We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 8 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | trait MacroableWithAttributes |
||
| 8 | { |
||
| 9 | use Macroable { |
||
| 10 | __call as macroCall; |
||
| 11 | } |
||
| 12 | |||
| 13 | /** |
||
| 14 | * The registered string macros. |
||
| 15 | * |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | protected static $macros = []; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Get the registered macros. |
||
| 22 | * |
||
| 23 | * @var array |
||
| 24 | */ |
||
| 25 | public function getMacros() |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Call the macros registered for the given macroable attributes. |
||
| 32 | * |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | public function callRegisteredAttributeMacros() |
||
| 57 |