Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| NoLeap | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| isLeapYear | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
| <?php | |
| namespace Popy\Calendar\Converter\LeapYearCalculator; | |
| use Popy\Calendar\Converter\SimpleLeapYearCalculatorInterface; | |
| /** | |
| * No leap, used for old calendars not implementing a leap. | |
| */ | |
| class NoLeap implements SimpleLeapYearCalculatorInterface | |
| { | |
| /** | |
| * @inheritDoc | |
| */ | |
| public function isLeapYear($year) | |
| { | |
| return false; | |
| } | |
| } |