1 | <?php |
||
12 | class Installer implements InstallerContract |
||
13 | { |
||
14 | /** |
||
15 | * @var \Honeybadger\Contracts\Reporter |
||
16 | */ |
||
17 | protected $honeybadger; |
||
18 | |||
19 | /** |
||
20 | * @param \Honeybadger\Contracts\Reporter $honeybadger |
||
21 | */ |
||
22 | public function __construct(Reporter $honeybadger) |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function writeConfig(array $config, string $filePath) : bool |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public function sendTestException() : array |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function publishLaravelConfig() : bool |
||
63 | |||
64 | /** |
||
65 | * {@inheritdoc} |
||
66 | */ |
||
67 | public function shouldPublishConfig(): bool |
||
71 | |||
72 | /** |
||
73 | * {@inheritdoc} |
||
74 | */ |
||
75 | public function publishLumenConfig(string $stubPath = null): bool |
||
86 | } |
||
87 |