Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.

Commit a1f78d1

Browse files
Gijs JorissenStyleCIBot
Gijs Jorissen
authored andcommittedFeb 23, 2017
Apply fixes from StyleCI
1 parent c1d904c commit a1f78d1

File tree

4 files changed

+70
-73
lines changed

4 files changed

+70
-73
lines changed
 

‎config/tracer.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
return [
44

5-
// By default the trace is set to true
6-
'trace' => true,
5+
// By default the trace is set to true
6+
'trace' => true,
77

8-
// Default path where your compiled views are located
9-
'path' => '/storage/framework/views',
8+
// Default path where your compiled views are located
9+
'path' => '/storage/framework/views',
1010

11-
];
11+
];

‎src/Middleware/AssetsMiddleware.php

+9-10
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,22 @@
44

55
use Closure;
66
use Illuminate\Http\Request;
7-
use Illuminate\Http\Response;
87

98
class AssetsMiddleware
109
{
1110
public function handle(Request $request, Closure $next)
1211
{
13-
$response = $next($request);
14-
$content = $response->content();
12+
$response = $next($request);
13+
$content = $response->content();
1514

16-
$content = str_replace(
17-
'</head>',
18-
'<link href="/css/laravel-tracer.css" rel="stylesheet">
15+
$content = str_replace(
16+
'</head>',
17+
'<link href="/css/laravel-tracer.css" rel="stylesheet">
1918
<script type="text/javascript" src="/js/laravel-tracer.js"></script>
2019
</head>',
21-
$content
22-
);
20+
$content
21+
);
2322

24-
return $response->setContent($content);
23+
return $response->setContent($content);
2524
}
26-
}
25+
}

‎src/Tracer.php

+55-55
Original file line numberDiff line numberDiff line change
@@ -4,69 +4,69 @@
44

55
class Tracer
66
{
7-
/**
8-
* [$files description]
9-
* @var [type]
10-
*/
11-
protected $files;
7+
/**
8+
* [$files description].
9+
* @var [type]
10+
*/
11+
protected $files;
1212

13-
/**
14-
* [$realPath description]
15-
* @var [type]
16-
*/
17-
protected $realPath;
13+
/**
14+
* [$realPath description].
15+
* @var [type]
16+
*/
17+
protected $realPath;
1818

19-
/**
20-
* [$debug description]
21-
* @var [type]
22-
*/
23-
protected $debug;
19+
/**
20+
* [$debug description].
21+
* @var [type]
22+
*/
23+
protected $debug;
2424

25-
/**
26-
* Constructor
27-
*/
28-
public function __construct()
29-
{
30-
$this->files = \File::allFiles(base_path().(config('tracer.path') ? config('tracer.path') : '/storage/framework/views'));
25+
/**
26+
* Constructor.
27+
*/
28+
public function __construct()
29+
{
30+
$this->files = \File::allFiles(base_path().(config('tracer.path') ? config('tracer.path') : '/storage/framework/views'));
3131

32-
$this->realPath = '<span class="laravel-trace"><?php echo last($this->lastCompiled) ?></span>';
33-
$this->debug = config('tracer.trace');
34-
}
32+
$this->realPath = '<span class="laravel-trace"><?php echo last($this->lastCompiled) ?></span>';
33+
$this->debug = config('tracer.trace');
34+
}
3535

36-
/**
37-
* Start the tracer
38-
* @return [type] [description]
39-
*/
40-
public function trace()
41-
{
42-
foreach ($this->files as $file) {
43-
($this->debug === true) ? $this->addTrace($file) : $this->removeTrace($file);
44-
}
45-
}
36+
/**
37+
* Start the tracer.
38+
* @return [type] [description]
39+
*/
40+
public function trace()
41+
{
42+
foreach ($this->files as $file) {
43+
($this->debug === true) ? $this->addTrace($file) : $this->removeTrace($file);
44+
}
45+
}
4646

47-
/**
48-
* Add the trace to the view
49-
* @param [type] $file [description]
50-
*/
51-
public function addTrace($file)
52-
{
53-
// If the file does not contain the trace, add it.
54-
if( strpos(\File::get($file), $this->realPath) === false && $this->debug == true) {
55-
\File::prepend($file, $this->realPath);
56-
}
57-
}
47+
/**
48+
* Add the trace to the view.
49+
* @param [type] $file [description]
50+
*/
51+
public function addTrace($file)
52+
{
53+
// If the file does not contain the trace, add it.
54+
if (strpos(\File::get($file), $this->realPath) === false && $this->debug == true) {
55+
\File::prepend($file, $this->realPath);
56+
}
57+
}
5858

59-
/**
60-
* Remove the trace from the view
61-
* @param [type] $file [description]
62-
* @return [type] [description]
63-
*/
64-
public function removeTrace($file)
65-
{
59+
/**
60+
* Remove the trace from the view.
61+
* @param [type] $file [description]
62+
* @return [type] [description]
63+
*/
64+
public function removeTrace($file)
65+
{
6666
// If the file does contain the trace, remove it.
67-
if( strpos(\File::get($file), $this->realPath) !== false) {
67+
if (strpos(\File::get($file), $this->realPath) !== false) {
6868
$content = str_replace($this->realPath, '', \File::get($file));
6969
\File::put($file, $content);
7070
}
71-
}
72-
}
71+
}
72+
}

‎src/TracerServiceProvider.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Appstract\Tracer;
44

5-
use Illuminate\Support\Facades\View;
65
use Illuminate\Support\ServiceProvider;
76

87
class TracerServiceProvider extends ServiceProvider
@@ -14,11 +13,10 @@ class TracerServiceProvider extends ServiceProvider
1413
*/
1514
public function boot(\Illuminate\Contracts\Http\Kernel $kernel)
1615
{
17-
1816
$this->publishes([
1917
__DIR__.'/../config/tracer.php' => config_path('tracer.php'),
2018
__DIR__.'/../assets/css/laravel-tracer.css' => public_path('css/laravel-tracer.css'),
21-
__DIR__.'/../assets/js/laravel-tracer.js' => public_path('js/laravel-tracer.js')
19+
__DIR__.'/../assets/js/laravel-tracer.js' => public_path('js/laravel-tracer.js'),
2220
]);
2321

2422
$tracer = (new Tracer)->trace();

0 commit comments

Comments
 (0)
This repository has been archived.