4
4
5
5
class Tracer
6
6
{
7
- /**
8
- * [$files description]
9
- * @var [type]
10
- */
11
- protected $ files ;
7
+ /**
8
+ * [$files description].
9
+ * @var [type]
10
+ */
11
+ protected $ files ;
12
12
13
- /**
14
- * [$realPath description]
15
- * @var [type]
16
- */
17
- protected $ realPath ;
13
+ /**
14
+ * [$realPath description].
15
+ * @var [type]
16
+ */
17
+ protected $ realPath ;
18
18
19
- /**
20
- * [$debug description]
21
- * @var [type]
22
- */
23
- protected $ debug ;
19
+ /**
20
+ * [$debug description].
21
+ * @var [type]
22
+ */
23
+ protected $ debug ;
24
24
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 ' ));
31
31
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
+ }
35
35
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
+ }
46
46
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
+ }
58
58
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
+ {
66
66
// 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 ) {
68
68
$ content = str_replace ($ this ->realPath , '' , \File::get ($ file ));
69
69
\File::put ($ file , $ content );
70
70
}
71
- }
72
- }
71
+ }
72
+ }
0 commit comments