Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
MonthDate | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
0 | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\datetime\Plugin\views\argument\MonthDate. | |
*/ | |
namespace Drupal\datetime\Plugin\views\argument; | |
/** | |
* Argument handler for a month. | |
* | |
* @ViewsArgument("datetime_month") | |
*/ | |
class MonthDate extends Date { | |
/** | |
* {@inheritdoc} | |
*/ | |
protected $argFormat = 'm'; | |
} |