Skip to content

Commit f988d46

Browse files
committed
Bump PHP-CS-Fixer
1 parent bd4d600 commit f988d46

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+53
-1
lines changed

.php-cs-fixer.dist.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"require-dev": {
2020
"behat/behat": "^3.13",
2121
"dvdoug/behat-code-coverage": "^5.3.1",
22-
"friendsofphp/php-cs-fixer": "^3.38.2",
22+
"friendsofphp/php-cs-fixer": "^3.65",
2323
"monolog/monolog": "^3.5",
2424
"phpunit/phpunit": "^10.4"
2525
},

features/bootstrap/InfalliblePackerContext.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

features/bootstrap/PackerContext.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/Box.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/BoxList.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/BoxSorter.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/ConstrainedPlacementItem.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/DefaultBoxSorter.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/DefaultItemSorter.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/DefaultPackedBoxSorter.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/Item.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/ItemList.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/ItemSorter.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/LayerPacker.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/LayerStabiliser.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/LimitedSupplyBox.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/OrientatedItem.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/OrientatedItemFactory.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/OrientatedItemSorter.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/PackedBox.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/PackedBoxList.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/PackedBoxSorter.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/PackedItem.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/PackedItemList.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/PackedLayer.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/Packer.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/Rotation.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/VolumePacker.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/WeightRedistributor.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

src/WorkingVolume.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/BoxListTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/EfficiencyTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/ItemListTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/NoBoxesAvailableExceptionTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/OrientatedItemFactoryTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/OrientatedItemTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/PackedBoxListTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/PackedBoxTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/PackedItemTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/PackedLayerTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/PackerTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/PublishedTestCasesTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/Test/ConstrainedPlacementByCountTestItem.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/Test/ConstrainedPlacementNoStackingTestItem.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/Test/LimitedSupplyTestBox.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/Test/PackedBoxByReferenceSorter.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/Test/THPackTestItem.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/Test/TestBox.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/Test/TestItem.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/VolumePackerTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/WeightRedistributorTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

tests/WorkingVolumeTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* Box packing (3D bin packing, knapsack problem).
45
*

0 commit comments

Comments
 (0)