Skip to content

Commit 0744517

Browse files
committed
@copyright 2019 Marc Bennewitz
1 parent f4c0224 commit 0744517

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

src/Enum.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
/**
1010
* Class to implement enumerations for PHP 5 (without SplEnum)
1111
*
12-
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
13-
* @copyright Copyright (c) 2017 Marc Bennewitz
12+
* @copyright 2019 Marc Bennewitz
1413
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
14+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
1515
*/
1616
abstract class Enum
1717
{

src/EnumMap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
/**
1313
* A map of enumerators (EnumMap<T>) and mixed values.
1414
*
15-
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
16-
* @copyright Copyright (c) 2017 Marc Bennewitz
15+
* @copyright 2019 Marc Bennewitz
1716
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
17+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
1818
*/
1919
class EnumMap implements ArrayAccess, Countable, SeekableIterator
2020
{

src/EnumSerializableTrait.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
* Please note that this feature breaks singleton behaviour of your enumerations
1414
* if an enumeration will be unserialized after it was instantiated already.
1515
*
16-
* @link https://github.com/marc-mabe/php-enum/issues/52 for further information about this feature
17-
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
18-
* @copyright Copyright (c) 2017 Marc Bennewitz
16+
* @copyright 2019 Marc Bennewitz
1917
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
18+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
19+
* @link https://github.com/marc-mabe/php-enum/issues/52 for further information about this feature
2020
*/
2121
trait EnumSerializableTrait
2222
{

src/EnumSet.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* A set of enumerators of the given enumeration (EnumSet<T>)
1111
* based on an integer or binary bitset depending of given enumeration size.
1212
*
13-
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
14-
* @copyright Copyright (c) 2017 Marc Bennewitz
13+
* @copyright 2019 Marc Bennewitz
1514
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
15+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
1616
*/
1717
class EnumSet implements Iterator, Countable
1818
{

tests/MabeEnumTest/EnumMapTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
/**
1414
* Unit tests for the class MabeEnum\EnumMap
1515
*
16-
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
17-
* @copyright Copyright (c) 2017 Marc Bennewitz
16+
* @copyright 2019 Marc Bennewitz
1817
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
18+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
1919
*/
2020
class EnumMapTest extends TestCase
2121
{

tests/MabeEnumTest/EnumSerializableTraitTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
/**
1313
* Unit tests for the trait MabeEnum\EnumSerializableTrait
1414
*
15-
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
16-
* @copyright Copyright (c) 2017 Marc Bennewitz
15+
* @copyright 2019 Marc Bennewitz
1716
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
17+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
1818
*/
1919
class EnumSerializableTraitTest extends TestCase
2020
{

tests/MabeEnumTest/EnumSetTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
/**
1818
* Unit tests for the class MabeEnum\EnumSet
1919
*
20-
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
21-
* @copyright Copyright (c) 2017 Marc Bennewitz
20+
* @copyright 2019 Marc Bennewitz
2221
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
22+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
2323
*/
2424
class EnumSetTest extends TestCase
2525
{

tests/MabeEnumTest/EnumTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
/**
2121
* Unit tests for the class MabeEnum\Enum
2222
*
23-
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
24-
* @copyright Copyright (c) 2017 Marc Bennewitz
23+
* @copyright 2019 Marc Bennewitz
2524
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
25+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
2626
*/
2727
class EnumTest extends TestCase
2828
{

0 commit comments

Comments
 (0)