Skip to content

Commit 2ec0582

Browse files
committed
updated copyright year and added copyright/class documentation where missing
1 parent 33a0447 commit 2ec0582

25 files changed

+51
-36
lines changed

bench/EnumBench.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
* @BeforeMethods({"init"})
1111
* @Revs(2500)
1212
* @Iterations(25)
13+
*
14+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
15+
* @copyright Copyright (c) 2017 Marc Bennewitz
16+
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1317
*/
1418
class EnumBench
1519
{

bench/EnumMapBench.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
* @BeforeMethods({"init"})
1212
* @Revs(2000)
1313
* @Iterations(25)
14+
*
15+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
16+
* @copyright Copyright (c) 2017 Marc Bennewitz
17+
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1418
*/
1519
class EnumMapBench
1620
{

bench/EnumSet32Bench.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
* @BeforeMethods({"init"})
1313
* @Revs(2000)
1414
* @Iterations(25)
15+
*
16+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
17+
* @copyright Copyright (c) 2017 Marc Bennewitz
18+
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1519
*/
1620
class EnumSet32Bench
1721
{

bench/EnumSet66Bench.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
* @BeforeMethods({"init"})
1313
* @Revs(2000)
1414
* @Iterations(25)
15+
*
16+
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
17+
* @copyright Copyright (c) 2017 Marc Bennewitz
18+
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1519
*/
1620
class EnumSet66Bench
1721
{

src/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) 2015 Marc Bennewitz
13+
* @copyright Copyright (c) 2017 Marc Bennewitz
1414
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
1515
*/
1616
abstract class Enum

src/EnumMap.php

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

src/EnumSerializableTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
* @link https://github.com/marc-mabe/php-enum/issues/52 for further information about this feature
1717
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
18-
* @copyright Copyright (c) 2015 Marc Bennewitz
18+
* @copyright Copyright (c) 2017 Marc Bennewitz
1919
* @license http://github.com/marc-mabe/php-enum/blob/master/LICENSE.txt New BSD License
2020
*/
2121
trait EnumSerializableTrait

src/EnumSet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* This EnumSet is based on a bitset of a binary string.
1111
*
1212
* @link http://github.com/marc-mabe/php-enum for the canonical source repository
13-
* @copyright Copyright (c) 2015 Marc Bennewitz
13+
* @copyright Copyright (c) 2017 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) 2015 Marc Bennewitz
16+
* @copyright Copyright (c) 2017 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/EnumSerializableTraitTest.php

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

0 commit comments

Comments
 (0)