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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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
*/

tests/MabeEnumTest/EnumMapTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* Unit tests for the class MabeEnum\EnumMap
1616
*
17-
* @copyright 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
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
2020
*/

tests/MabeEnumTest/EnumSerializableTraitTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* Unit tests for the trait MabeEnum\EnumSerializableTrait
1616
*
17-
* @copyright 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
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
2020
*/

tests/MabeEnumTest/EnumSetIteratorTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Unit tests for the class MabeEnum\EnumSet
2121
*
22-
* @copyright 2019 Marc Bennewitz
22+
* @copyright 2020, Marc Bennewitz
2323
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
2424
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
2525
*/

tests/MabeEnumTest/EnumSetTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Unit tests for the class MabeEnum\EnumSet
2121
*
22-
* @copyright 2019 Marc Bennewitz
22+
* @copyright 2020, Marc Bennewitz
2323
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
2424
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
2525
*/

tests/MabeEnumTest/EnumTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* Unit tests for the class MabeEnum\Enum
2222
*
23-
* @copyright 2019 Marc Bennewitz
23+
* @copyright 2020, Marc Bennewitz
2424
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
2525
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
2626
*/

tests/MabeEnumTest/TestAsset/ConstVisibilityEnum.php

+1-1
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) 2019 Marc Bennewitz
11+
* @copyright 2020, Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*
1414
* @method static static IPUB()

tests/MabeEnumTest/TestAsset/ConstVisibilityEnumExtended.php

+1-1
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) 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
* @method static static IPUB2()

tests/MabeEnumTest/TestAsset/EmptyEnum.php

+1-1
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) 2019 Marc Bennewitz
11+
* @copyright 2020, 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

+1-1
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) 2019 Marc Bennewitz
11+
* @copyright 2020, Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*
1414
* @method static static ONE()

tests/MabeEnumTest/TestAsset/Enum32.php

+1-1
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) 2019 Marc Bennewitz
11+
* @copyright 2020, Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*
1414
* @method static static ONE()

tests/MabeEnumTest/TestAsset/Enum64.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Enumeration with numbers from 1-64 (For 64 bit tests)
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2019 Marc Bennewitz
11+
* @copyright 2020, Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*
1414
* @method static static THIRTYTHREE()

tests/MabeEnumTest/TestAsset/Enum65.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Enumeration with numbers from 1-65 (For > 64 bit bitset)
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2019 Marc Bennewitz
11+
* @copyright 2020, Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*
1414
* @method static static SIXTYFIVE()

tests/MabeEnumTest/TestAsset/Enum66.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Enumeration with numbers from 1-66 (For > 64 bit bitset)
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2019 Marc Bennewitz
11+
* @copyright 2020, Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*
1414
* @method static static SIXTYSIX()

tests/MabeEnumTest/TestAsset/EnumAmbiguous.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Enumeration with dublicated values
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2019 Marc Bennewitz
11+
* @copyright 2020, Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*/
1414
class EnumAmbiguous extends Enum

tests/MabeEnumTest/TestAsset/EnumBasic.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* A very basic enumeration class with mixed value types
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2019 Marc Bennewitz
11+
* @copyright 2020, Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*
1414
* @method static static ONE()

tests/MabeEnumTest/TestAsset/EnumExtendedAmbiguous.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Enumeration class with dublicated value from inheritance
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2019 Marc Bennewitz
11+
* @copyright 2020, Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*/
1414
class EnumExtendedAmbiguous extends EnumBasic

tests/MabeEnumTest/TestAsset/EnumInheritance.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Basic inherited enumeration
77
*
88
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
9-
* @copyright Copyright (c) 2019 Marc Bennewitz
9+
* @copyright 2020, Marc Bennewitz
1010
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1111
*
1212
* @method static static INHERITANCE()

tests/MabeEnumTest/TestAsset/EnumMapExt.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
9-
* @copyright Copyright (c) 2020 Marc Bennewitz
9+
* @copyright 2020, Marc Bennewitz
1010
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1111
*
1212
* @extends EnumMap<\MabeEnum\Enum>

tests/MabeEnumTest/TestAsset/EnumSetExt.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
9-
* @copyright Copyright (c) 2020 Marc Bennewitz
9+
* @copyright 2020, Marc Bennewitz
1010
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1111
*
1212
* @extends EnumSet<\MabeEnum\Enum>

tests/MabeEnumTest/TestAsset/ExtendedSerializableEnum.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Extended serializable enumeration
77
*
88
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
9-
* @copyright Copyright (c) 2019 Marc Bennewitz
9+
* @copyright 2020, Marc Bennewitz
1010
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1111
*
1212
* @method static static EXTENDED()

tests/MabeEnumTest/TestAsset/SerializableEnum.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Basic serializable enumeration
1111
*
1212
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
13-
* @copyright Copyright (c) 2019 Marc Bennewitz
13+
* @copyright 2020, Marc Bennewitz
1414
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1515
*
1616
* @method static static INT()

0 commit comments

Comments
 (0)