Skip to content

Commit fa98114

Browse files
committed
Copyright (c) 2019
1 parent 29e0985 commit fa98114

19 files changed

+19
-19
lines changed

bench/AbstractEnumSetBench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @Iterations(25)
1515
*
1616
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
17-
* @copyright Copyright (c) 2017 Marc Bennewitz
17+
* @copyright Copyright (c) 2019 Marc Bennewitz
1818
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1919
*/
2020
abstract class AbstractEnumSetBench

bench/EnumBench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @Iterations(25)
1616
*
1717
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
18-
* @copyright Copyright (c) 2017 Marc Bennewitz
18+
* @copyright Copyright (c) 2019 Marc Bennewitz
1919
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
2020
*/
2121
class EnumBench

bench/EnumMapBench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* @Iterations(25)
1414
*
1515
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
16-
* @copyright Copyright (c) 2017 Marc Bennewitz
16+
* @copyright Copyright (c) 2019 Marc Bennewitz
1717
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1818
*/
1919
class EnumMapBench

bench/EnumSet32Bench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Benchmark an EnumSet with 32 defined enumerators that's using an integer bitset internally.
1010
*
1111
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
12-
* @copyright Copyright (c) 2017 Marc Bennewitz
12+
* @copyright Copyright (c) 2019 Marc Bennewitz
1313
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1414
*/
1515
class EnumSet32Bench extends AbstractEnumSetBench

bench/EnumSet66Bench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Benchmark an EnumSet with 66 defined enumerators that's using an binary bitset internally.
1010
*
1111
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
12-
* @copyright Copyright (c) 2017 Marc Bennewitz
12+
* @copyright Copyright (c) 2019 Marc Bennewitz
1313
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1414
*/
1515
class EnumSet66Bench extends AbstractEnumSetBench

tests/MabeEnumTest/TestAsset/ConstVisibilityEnum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Enumeration with mixed constant visibility added in PHP-7.1
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2017 Marc Bennewitz
11+
* @copyright Copyright (c) 2019 Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*/
1414
class ConstVisibilityEnum extends Enum

tests/MabeEnumTest/TestAsset/ConstVisibilityEnumExtended.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* and inheritance
1010
*
1111
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
12-
* @copyright Copyright (c) 2017 Marc Bennewitz
12+
* @copyright Copyright (c) 2019 Marc Bennewitz
1313
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1414
*/
1515
class ConstVisibilityEnumExtended extends ConstVisibilityEnum

tests/MabeEnumTest/TestAsset/EmptyEnum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Enumeration without any enumerators
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2017 Marc Bennewitz
11+
* @copyright Copyright (c) 2019 Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*/
1414
class EmptyEnum extends Enum

tests/MabeEnumTest/TestAsset/Enum31.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Enumeration with numbers from 1-31 (Safe to use on 32 and 64 bit systems as positive integer)
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2017 Marc Bennewitz
11+
* @copyright Copyright (c) 2019 Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*/
1414
class Enum31 extends Enum

tests/MabeEnumTest/TestAsset/Enum32.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Enumeration with numbers from 1-32 (For 32 bit tests)
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2017 Marc Bennewitz
11+
* @copyright Copyright (c) 2019 Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*/
1414
class Enum32 extends Enum

0 commit comments

Comments
 (0)