| 1 | <?php |
||
| 7 | class LaravelApiResponses |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Macros. |
||
| 11 | * @var array |
||
| 12 | */ |
||
| 13 | protected $macros = []; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * LaravelApiResponses constructor. |
||
| 17 | * @param ResponseFactory $factory |
||
| 18 | */ |
||
| 19 | public function __construct(ResponseFactory $factory) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Bind macros. |
||
| 34 | * @param ResponseFactory $factory |
||
| 35 | * @return void |
||
| 36 | */ |
||
| 37 | public function bindMacros($factory) |
||
| 43 | } |
||
| 44 |