Skip to content

Commit

Permalink
Merge pull request #1 from gaowei-space/analysis-djlodg
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
GaoWei committed May 28, 2022
2 parents 74ea995 + b8d01b0 commit 1042453
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/BaseExample.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

require __DIR__ . '/../vendor/autoload.php';
require __DIR__.'/../vendor/autoload.php';

$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
$dotenv->load();
2 changes: 1 addition & 1 deletion examples/ErrorHandlerExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Monolog\Handler\StreamHandler;
use Monolog\Logger;

require __DIR__ . '/BaseExample.php';
require __DIR__.'/BaseExample.php';

class ErrorHandlerExample
{
Expand Down
2 changes: 1 addition & 1 deletion examples/Monolog.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use GaoweiSpace\ErrorHandler\Examples\ErrorHandlerExample;

require __DIR__ . '/ErrorHandlerExample.php';
require __DIR__.'/ErrorHandlerExample.php';

$test = new ErrorHandlerExample();
$test->testInitLogger(3);
4 changes: 2 additions & 2 deletions examples/Sentry.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use GaoweiSpace\ErrorHandler\Examples\ErrorHandlerExample;

require __DIR__ . '/ErrorHandlerExample.php';
require __DIR__.'/ErrorHandlerExample.php';

$test = new ErrorHandlerExample();
$test = new ErrorHandlerExample();
$test->testInitForSentry(1);

0 comments on commit 1042453

Please sign in to comment.