Skip to content

Commit 9e591c7

Browse files
committed
Copyright (c) 2020
1 parent eba6a48 commit 9e591c7

31 files changed

+31
-31
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015, Marc Bennewitz
1+
Copyright (c) 2020, Marc Bennewitz
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

bench/AbstractEnumBench.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) 2019 Marc Bennewitz
18+
* @copyright 2020, Marc Bennewitz
1919
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
2020
*/
2121
class AbstractEnumBench

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) 2019 Marc Bennewitz
17+
* @copyright 2020, Marc Bennewitz
1818
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1919
*/
2020
abstract class AbstractEnumSetBench

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) 2019 Marc Bennewitz
16+
* @copyright 2020, 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) 2019 Marc Bennewitz
12+
* @copyright 2020, 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) 2019 Marc Bennewitz
12+
* @copyright 2020, Marc Bennewitz
1313
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1414
*/
1515
class EnumSet66Bench extends AbstractEnumSetBench

src/Enum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* Abstract base enumeration class.
1313
*
14-
* @copyright 2019 Marc Bennewitz
14+
* @copyright 2020, Marc Bennewitz
1515
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1616
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
1717
*

src/EnumMap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* @implements ArrayAccess<T, mixed>
1919
* @implements IteratorAggregate<T, mixed>
2020
*
21-
* @copyright 2019 Marc Bennewitz
21+
* @copyright 2020, Marc Bennewitz
2222
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
2323
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
2424
*/

src/EnumSerializableTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Please note that this feature breaks singleton behaviour of your enumerations
1616
* if an enumeration will be unserialized after it was instantiated already.
1717
*
18-
* @copyright 2019 Marc Bennewitz
18+
* @copyright 2020, Marc Bennewitz
1919
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
2020
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
2121
* @link https://github.com/marc-mabe/php-enum/issues/52 for further information about this feature

src/EnumSet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @template T of Enum
1717
* @implements IteratorAggregate<int, T>
1818
*
19-
* @copyright 2019 Marc Bennewitz
19+
* @copyright 2020, Marc Bennewitz
2020
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
2121
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
2222
*/

0 commit comments

Comments
 (0)