Skip to content

Commit f3db488

Browse files
committed
log info comentado
1 parent 4ea6d24 commit f3db488

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

src/Wcadena/StringBladeCompiler/Facades/StringView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class StringView extends Facade
1414
*/
1515
protected static function getFacadeAccessor()
1616
{
17-
Log::info('datoasdasd88asd8asd');
17+
//Log::info('datoasdasd88asd8asd');
1818
return 'StringView';
1919
}
2020
}

src/Wcadena/StringBladeCompiler/StringView.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ class StringView extends \Illuminate\View\View implements ArrayAccess, Renderabl
1616

1717
public function __construct($config)
1818
{
19-
Log::info('asdasdasd8a8asd8a8sdasd');
19+
//Log::info('asdasdasd8a8asd8a8sdasd');
2020
$this->config = $config;
2121
}
2222

2323
public function setEngine($compiler)
2424
{
25-
Log::info('asdasdasd8a8asd8a8sdasd22222222222222222222222222222');
25+
//Log::info('asdasdasd8a8asd8a8sdasd22222222222222222222222222222');
2626
$this->engine = $compiler;
2727
return $this;
2828
}
@@ -37,7 +37,7 @@ public function setEngine($compiler)
3737
*/
3838
public function make($view, $data = array(), $mergeData = array())
3939
{
40-
Log::info('asdasdasd8a8asd8a8sdasd3333333333333333333333333333333333');
40+
//Log::info('asdasdasd8a8asd8a8sdasd3333333333333333333333333333333333');
4141
$this->path = $view;
4242
$this->data = array_merge($mergeData, $this->parseData($data));
4343

@@ -52,7 +52,7 @@ public function make($view, $data = array(), $mergeData = array())
5252
*/
5353
public function render(callable $callback = null)
5454
{
55-
Log::info('asdasdasd8a8asd8a8sdasd444444444444444444444444444444444');
55+
//Log::info('asdasdasd8a8asd8a8sdasd444444444444444444444444444444444');
5656
$contents = $this->renderContents();
5757

5858
$response = isset($callback) ? $callback($this, $contents) : null;
@@ -72,7 +72,7 @@ public function render(callable $callback = null)
7272
*/
7373
protected function renderContents()
7474
{
75-
Log::info('asdasdasd8a8asd8a8sdasd55555555555555555555555555555555555');
75+
//Log::info('asdasdasd8a8asd8a8sdasd55555555555555555555555555555555555');
7676
// We will keep track of the amount of views being rendered so we can flush
7777
// the section after the complete rendering operation is done. This will
7878
// clear out the sections for any separate views that may be rendered.
@@ -96,7 +96,7 @@ protected function renderContents()
9696
*/
9797
protected function parseData($data)
9898
{
99-
Log::info('asdasdasd8a8asd8a8sdasd66666666666666666666666666');
99+
//Log::info('asdasdasd8a8asd8a8sdasd66666666666666666666666666');
100100
return $data instanceof Arrayable ? $data->toArray() : $data;
101101
}
102102

@@ -107,7 +107,7 @@ protected function parseData($data)
107107
*/
108108
protected function gatherData()
109109
{
110-
Log::info('asdasdasd8a8asd8a8sdasd777777777777777777777777777777');
110+
//Log::info('asdasdasd8a8asd8a8sdasd777777777777777777777777777777');
111111
$data = array_merge(View::getShared(), $this->data);
112112

113113
foreach ($data as $key => $value) {
@@ -129,7 +129,7 @@ protected function gatherData()
129129
*/
130130
public function nest($key, $view, array $data = array())
131131
{
132-
Log::info('asdasdasd8a8asd8a8sdasd888888888888888888888888888888');
132+
//Log::info('asdasdasd8a8asd8a8sdasd888888888888888888888888888888');
133133
return $this->with($key, View::make($view, $data));
134134
}
135135

@@ -141,7 +141,7 @@ public function nest($key, $view, array $data = array())
141141
*/
142142
public function offsetExists($key)
143143
{
144-
Log::info('asdasdasd8a8asd8a8sdasd9999999999999999999999999999999');
144+
//Log::info('asdasdasd8a8asd8a8sdasd9999999999999999999999999999999');
145145
return array_key_exists($key, $this->data);
146146
}
147147

@@ -153,7 +153,7 @@ public function offsetExists($key)
153153
*/
154154
public function offsetGet($key)
155155
{
156-
Log::info('asdasdasd8a8asd8a8sdasd100000000000000000000100000000');
156+
//Log::info('asdasdasd8a8asd8a8sdasd100000000000000000000100000000');
157157
return $this->data[$key];
158158
}
159159

@@ -166,7 +166,7 @@ public function offsetGet($key)
166166
*/
167167
public function offsetSet($key, $value)
168168
{
169-
Log::info('chixZXZX11111111111111');
169+
//Log::info('chixZXZX11111111111111');
170170
$this->with($key, $value);
171171
}
172172

@@ -178,7 +178,7 @@ public function offsetSet($key, $value)
178178
*/
179179
public function offsetUnset($key)
180180
{
181-
Log::info('chixZXZX1111111111111122222222222222222222222');
181+
//Log::info('chixZXZX1111111111111122222222222222222222222');
182182
unset($this->data[$key]);
183183
}
184184
}

0 commit comments

Comments
 (0)