Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 6 |
NullParser | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 6 |
parse | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
parseToDateRepresentation | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
<?php | |
namespace Popy\Calendar\Parser; | |
use DateTimeZone; | |
use Popy\Calendar\ParserInterface; | |
/** | |
* NullParser implementation. | |
*/ | |
class NullParser implements ParserInterface | |
{ | |
/** | |
* @inheritDoc | |
*/ | |
public function parse($input, $format, DateTimeZone $timezone = null) | |
{ | |
return null; | |
} | |
/** | |
* @inheritDoc | |
*/ | |
public function parseToDateRepresentation($input, $format, DateTimeZone $timezone = null) | |
{ | |
return null; | |
} | |
} |