Skip to content

Commit bae625b

Browse files
authored
Fix usless null initialization (#935)
1 parent 9479fca commit bae625b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Result/ListLayerVersionsResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class ListLayerVersionsResponse extends Result implements \IteratorAggregate
1818
/**
1919
* A pagination token returned when the response doesn't contain all versions.
2020
*/
21-
private $NextMarker = null;
21+
private $NextMarker;
2222

2323
/**
2424
* A list of versions.

0 commit comments

Comments
 (0)