We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14fd85d commit 8f11e1dCopy full SHA for 8f11e1d
src/Loggable.php
@@ -2,6 +2,20 @@
2
3
namespace Illuminated\Console;
4
5
+use Symfony\Component\Console\Input\InputInterface;
6
+use Symfony\Component\Console\Output\OutputInterface;
7
+
8
trait Loggable
9
{
10
+ protected function initialize(InputInterface $input, OutputInterface $output)
11
+ {
12
+ $this->initializeLogging();
13
14
+ parent::initialize($input, $output);
15
+ }
16
17
+ private function initializeLogging()
18
19
+ dd('logging');
20
21
}
0 commit comments