Skip to content

Commit 2f71fbd

Browse files
committed
2022
1 parent 444fe03 commit 2f71fbd

11 files changed

+17
-17
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
RUN_PSALM: 'true'
3232
- PHP_VERSION: '8.0'
3333
CODE_COVERAGE: 'true'
34-
RUN_PHPSTAN: 'true'
35-
RUN_PSALM: 'true'
34+
RUN_PHPSTAN: 'false'
35+
RUN_PSALM: 'false'
3636
- PHP_VERSION: '8.1'
3737
CODE_COVERAGE: 'true'
3838
RUN_PHPSTAN: 'false'

LICENSE.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
Copyright (c) 2021, Marc Bennewitz
1+
Copyright (c) 2022, Marc Bennewitz
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,
55
are permitted provided that the following conditions are met:
66

77
* Redistributions of source code must retain the above copyright notice,
88
this list of conditions and the following disclaimer.
9-
9+
1010
* Redistributions in binary form must reproduce the above copyright notice,
1111
this list of conditions and the following disclaimer in the documentation
1212
and/or other materials provided with the distribution.
13-
13+
1414
* Neither the name of the organisation nor the names of its contributors
1515
may be used to endorse or promote products derived from this software
1616
without specific prior written permission.

src/Mabe/Enum/Cl/EmulatedBackedEnum.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* Abstract base class for emulated backed enumerations.
1717
*
18-
* @copyright 2021, Marc Bennewitz
18+
* @copyright 2022, Marc Bennewitz
1919
* @license http://github.com/marc-mabe/php-enum-cl/blob/main/LICENSE.txt New BSD License
2020
* @link http://github.com/marc-mabe/php-enum-cl for the canonical source repository
2121
* @internal

src/Mabe/Enum/Cl/EmulatedIntEnum.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Abstract base class for emulated integer backed enumerations.
77
*
8-
* @copyright 2021, Marc Bennewitz
8+
* @copyright 2022, Marc Bennewitz
99
* @license http://github.com/marc-mabe/php-enum-cl/blob/main/LICENSE.txt New BSD License
1010
* @link http://github.com/marc-mabe/php-enum-cl for the canonical source repository
1111
*

src/Mabe/Enum/Cl/EmulatedStringEnum.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Abstract base class for emulated string backed enumerations.
77
*
8-
* @copyright 2021, Marc Bennewitz
8+
* @copyright 2022, Marc Bennewitz
99
* @license http://github.com/marc-mabe/php-enum-cl/blob/main/LICENSE.txt New BSD License
1010
* @link http://github.com/marc-mabe/php-enum-cl for the canonical source repository
1111
*

src/Mabe/Enum/Cl/EmulatedUnitEnum.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* Abstract base class for emulated unit enumerations.
1515
*
16-
* @copyright 2021, Marc Bennewitz
16+
* @copyright 2022, Marc Bennewitz
1717
* @license http://github.com/marc-mabe/php-enum-cl/blob/main/LICENSE.txt New BSD License
1818
* @link http://github.com/marc-mabe/php-enum-cl for the canonical source repository
1919
*

src/Mabe/Enum/Cl/EnumBc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Backward compatibility trait for native enumerations.
1212
*
13-
* @copyright 2021, Marc Bennewitz
13+
* @copyright 2022, Marc Bennewitz
1414
* @license http://github.com/marc-mabe/php-enum-cl/blob/main/LICENSE.txt New BSD License
1515
* @link http://github.com/marc-mabe/php-enum-cl for the canonical source repository
1616
*

src/functions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Predefined functions
44
*
5-
* @copyright 2021, Marc Bennewitz
5+
* @copyright 2022, Marc Bennewitz
66
* @license http://github.com/marc-mabe/php-enum-cl/blob/main/LICENSE.txt New BSD License
77
* @link http://github.com/marc-mabe/php-enum-cl for the canonical source repository
88
*/

src/stubs/BackedEnum.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php declare(strict_types=1);
22

33
/**
4-
* PHP 8.1 stub
4+
* PHP 8.1 stub
55
*
6-
* @copyright 2021, Marc Bennewitz
6+
* @copyright 2022, Marc Bennewitz
77
* @license http://github.com/marc-mabe/php-enum-cl/blob/main/LICENSE.txt New BSD License
88
* @link http://github.com/marc-mabe/php-enum-cl for the canonical source repository
99
*/

src/stubs/UnitEnum.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php declare(strict_types=1);
22

33
/**
4-
* PHP 8.1 stub
4+
* PHP 8.1 stub
55
*
6-
* @copyright 2021, Marc Bennewitz
6+
* @copyright 2022, Marc Bennewitz
77
* @license http://github.com/marc-mabe/php-enum-cl/blob/main/LICENSE.txt New BSD License
88
* @link http://github.com/marc-mabe/php-enum-cl for the canonical source repository
99
*/

src/stubs/ValueError.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php declare(strict_types=1);
22

33
/**
4-
* PHP 8.0 stub
4+
* PHP 8.0 stub
55
*
6-
* @copyright 2021, Marc Bennewitz
6+
* @copyright 2022, Marc Bennewitz
77
* @license http://github.com/marc-mabe/php-enum-cl/blob/main/LICENSE.txt New BSD License
88
* @link http://github.com/marc-mabe/php-enum-cl for the canonical source repository
99
*/

0 commit comments

Comments
 (0)