Skip to content

Commit ff71f6d

Browse files
committed
Happy New Year
1 parent 6e1b1b1 commit ff71f6d

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
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) 2013, Marc Bennewitz
1+
Copyright (c) 2015, Marc Bennewitz
22
All rights reserved.
33

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

src/MabeEnum/Enum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Class to implement enumerations for PHP 5 (without SplEnum)
1111
*
1212
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
13-
* @copyright Copyright (c) 2013 Marc Bennewitz
13+
* @copyright Copyright (c) 2015 Marc Bennewitz
1414
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1515
*/
1616
abstract class Enum

src/MabeEnum/EnumMap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* EnumMap implementation in base of SplObjectStorage
1111
*
1212
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
13-
* @copyright Copyright (c) 2013 Marc Bennewitz
13+
* @copyright Copyright (c) 2015 Marc Bennewitz
1414
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1515
*/
1616
class EnumMap extends SplObjectStorage

src/MabeEnum/EnumSet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* EnumSet implementation in base of SplObjectStorage
1111
*
1212
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
13-
* @copyright Copyright (c) 2013 Marc Bennewitz
13+
* @copyright Copyright (c) 2015 Marc Bennewitz
1414
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1515
*/
1616
class EnumSet implements Iterator, Countable

tests/MabeEnumTest/EnumMapTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Unit tests for the class MabeEnum\EnumMap
1414
*
1515
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
16-
* @copyright Copyright (c) 2013 Marc Bennewitz
16+
* @copyright Copyright (c) 2015 Marc Bennewitz
1717
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1818
*/
1919
class EnumMapTest extends TestCase

tests/MabeEnumTest/EnumSetTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Unit tests for the class MabeEnum\EnumSet
1313
*
1414
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
15-
* @copyright Copyright (c) 2013 Marc Bennewitz
15+
* @copyright Copyright (c) 2015 Marc Bennewitz
1616
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1717
*/
1818
class EnumSetTest extends TestCase

tests/MabeEnumTest/EnumTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Unit tests for the class MabeEnum\Enum
1414
*
1515
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
16-
* @copyright Copyright (c) 2013 Marc Bennewitz
16+
* @copyright Copyright (c) 2015 Marc Bennewitz
1717
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1818
*/
1919
class EnumTest extends TestCase

tests/MabeEnumTest/TestAsset/EmptyEnum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Unit tests for the class MabeEnum\Enum
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2013 Marc Bennewitz
11+
* @copyright Copyright (c) 2015 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/EnumAmbiguous.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Unit tests for the class MabeEnum\Enum
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2013 Marc Bennewitz
11+
* @copyright Copyright (c) 2015 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Unit tests for the class MabeEnum\Enum
99
*
1010
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
11-
* @copyright Copyright (c) 2013 Marc Bennewitz
11+
* @copyright Copyright (c) 2015 Marc Bennewitz
1212
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1313
*
1414
* @method EnumBasic ONE()

0 commit comments

Comments
 (0)