| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | class NoAction implements NotifierInterface |
||
| 26 | { |
||
| 27 | use SetStateTrait; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * This notifier doesn't actually do anything. |
||
| 31 | * It's used by the unit tests. |
||
| 32 | * |
||
| 33 | * You can use it as a template to create your own notifier. |
||
| 34 | * |
||
| 35 | * @param string $asset The filename of the asset. |
||
| 36 | */ |
||
| 37 | public function created($asset) |
||
| 42 |