Skip to content

Commit

Permalink
Use updated drupol/phpcsfixer-configs-php with PSR12 rule update.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Aug 12, 2019
1 parent 83a4e4d commit a1143c7
Show file tree
Hide file tree
Showing 26 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion spec/drupol/collection/CollectionSpec.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace spec\drupol\collection;

Expand Down
2 changes: 1 addition & 1 deletion src/Collection.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection;

Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Collection.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Contract;

Expand Down
2 changes: 1 addition & 1 deletion src/Contract/Operation.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Contract;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Append.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Chunk.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Collapse.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Combine.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Filter.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Flatten.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Flip.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Forget.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Keys.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Limit.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Merge.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Normalize.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Nth.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Only.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Operation.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Pad.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Prepend.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Range.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Skip.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Slice.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Walk.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down
2 changes: 1 addition & 1 deletion src/Operation/Zip.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace drupol\collection\Operation;

Expand Down

0 comments on commit a1143c7

Please sign in to comment.