File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ language: php
22php :
33 - 7.1
44 - 7.2
5+ - 7.3
56before_script :
67 - composer self-update
78 - composer install
Original file line number Diff line number Diff line change 55use Gelf \Publisher ;
66use Gelf \Transport \IgnoreErrorTransportWrapper ;
77use Gelf \Transport \UdpTransport ;
8- use Illuminate \Foundation \ Application ;
8+ use Illuminate \Contracts \ Container \ Container ;
99use InvalidArgumentException ;
1010use Monolog \Formatter \GelfMessageFormatter ;
1111use Monolog \Handler \GelfHandler ;
1414class GelfLoggerFactory
1515{
1616 /**
17- * The application instance .
17+ * The container implementation .
1818 *
19- * @var \Illuminate\Foundation\Application
19+ * @var \Illuminate\Contracts\Container\Container
2020 */
2121 protected $ app ;
2222
@@ -39,9 +39,9 @@ class GelfLoggerFactory
3939 /**
4040 * GelfLoggerFactory constructor.
4141 *
42- * @param \Illuminate\Foundation\Application $app
42+ * @param \Illuminate\Contracts\Container\Container $app
4343 */
44- public function __construct (Application $ app )
44+ public function __construct (Container $ app )
4545 {
4646 $ this ->app = $ app ;
4747 }
You can’t perform that action at this time.
0 commit comments