@@ -19,7 +19,9 @@ discard block |
||
19 | 19 | |
20 | 20 | public function needsRehash($hash = null) |
21 | 21 | { |
22 | - if (is_null($hash)) $hash = $this->value; |
|
22 | + if (is_null($hash)) { |
|
23 | + $hash = $this->value; |
|
24 | + } |
|
23 | 25 | |
24 | 26 | return password_needs_rehash($hash, PASSWORD_BCRYPT, ['cost' => 10]); |
25 | 27 | } |
@@ -57,7 +59,9 @@ discard block |
||
57 | 59 | |
58 | 60 | public function setValuesFromModel($model) |
59 | 61 | { |
60 | - if (property_exists($model, $this->name)) $this->value = $model->{$this->name}; |
|
62 | + if (property_exists($model, $this->name)) { |
|
63 | + $this->value = $model->{$this->name}; |
|
64 | + } |
|
61 | 65 | } |
62 | 66 | |
63 | 67 | public function setValuesFromRequest($request) |
@@ -67,7 +71,9 @@ discard block |
||
67 | 71 | |
68 | 72 | public function fillModelWithValues($model) |
69 | 73 | { |
70 | - if (property_exists($model, $this->name)) $model->{$this->name} = $this->value; |
|
74 | + if (property_exists($model, $this->name)) { |
|
75 | + $model->{$this->name} = $this->value; |
|
76 | + } |
|
71 | 77 | } |
72 | 78 | |
73 | 79 | public function validateRequired() |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return [ |
4 | - 'placeholder' => 'Buscar…', |
|
5 | - 'button' => 'Ir', |
|
4 | + 'placeholder' => 'Buscar…', |
|
5 | + 'button' => 'Ir', |
|
6 | 6 | ]; |
7 | 7 | \ No newline at end of file |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | return [ |
4 | - 'placeholder' => 'Search…', |
|
5 | - 'button' => 'Go', |
|
4 | + 'placeholder' => 'Search…', |
|
5 | + 'button' => 'Go', |
|
6 | 6 | ]; |
7 | 7 | \ No newline at end of file |
@@ -6,18 +6,18 @@ |
||
6 | 6 | |
7 | 7 | class Blade implements Engine { |
8 | 8 | |
9 | - /** |
|
9 | + /** |
|
10 | 10 | * Render the template content. |
11 | 11 | * |
12 | - * @param string $path |
|
13 | - * @param array $properties |
|
12 | + * @param string $path |
|
13 | + * @param array $properties |
|
14 | 14 | * @return string |
15 | 15 | */ |
16 | - public function render($path, $properties = []) |
|
17 | - { |
|
18 | - if ( ! function_exists('app')) throw new \Exception('Laravel required for blade rendering engine.'); |
|
16 | + public function render($path, $properties = []) |
|
17 | + { |
|
18 | + if ( ! function_exists('app')) throw new \Exception('Laravel required for blade rendering engine.'); |
|
19 | 19 | |
20 | - return app()->make('view')->file($path, $properties); |
|
21 | - } |
|
20 | + return app()->make('view')->file($path, $properties); |
|
21 | + } |
|
22 | 22 | |
23 | 23 | } |
@@ -15,7 +15,9 @@ |
||
15 | 15 | */ |
16 | 16 | public function render($path, $properties = []) |
17 | 17 | { |
18 | - if ( ! function_exists('app')) throw new \Exception('Laravel required for blade rendering engine.'); |
|
18 | + if ( ! function_exists('app')) { |
|
19 | + throw new \Exception('Laravel required for blade rendering engine.'); |
|
20 | + } |
|
19 | 21 | |
20 | 22 | return app()->make('view')->file($path, $properties); |
21 | 23 | } |
@@ -12,32 +12,32 @@ |
||
12 | 12 | * |
13 | 13 | * @var \Mustache_Engine |
14 | 14 | */ |
15 | - protected $compiler; |
|
15 | + protected $compiler; |
|
16 | 16 | |
17 | - /** |
|
17 | + /** |
|
18 | 18 | * Fetch the compiler. |
19 | 19 | * |
20 | 20 | * @return \Mustache_Engine |
21 | 21 | */ |
22 | - public function compiler() |
|
23 | - { |
|
24 | - if ( ! $this->compiler) $this->compiler = new Mustache_Engine; |
|
22 | + public function compiler() |
|
23 | + { |
|
24 | + if ( ! $this->compiler) $this->compiler = new Mustache_Engine; |
|
25 | 25 | |
26 | - return $this->compiler; |
|
27 | - } |
|
26 | + return $this->compiler; |
|
27 | + } |
|
28 | 28 | |
29 | - /** |
|
29 | + /** |
|
30 | 30 | * Render the template content. |
31 | 31 | * |
32 | - * @param string $path |
|
33 | - * @param array $properties |
|
32 | + * @param string $path |
|
33 | + * @param array $properties |
|
34 | 34 | * @return string |
35 | 35 | */ |
36 | - public function render($path, $properties = []) |
|
37 | - { |
|
38 | - $content = file_get_contents($path); |
|
36 | + public function render($path, $properties = []) |
|
37 | + { |
|
38 | + $content = file_get_contents($path); |
|
39 | 39 | |
40 | - return $this->compiler()->render($content, $properties); |
|
41 | - } |
|
40 | + return $this->compiler()->render($content, $properties); |
|
41 | + } |
|
42 | 42 | |
43 | 43 | } |
@@ -21,7 +21,9 @@ |
||
21 | 21 | */ |
22 | 22 | public function compiler() |
23 | 23 | { |
24 | - if ( ! $this->compiler) $this->compiler = new Mustache_Engine; |
|
24 | + if ( ! $this->compiler) { |
|
25 | + $this->compiler = new Mustache_Engine; |
|
26 | + } |
|
25 | 27 | |
26 | 28 | return $this->compiler; |
27 | 29 | } |
@@ -4,13 +4,13 @@ |
||
4 | 4 | |
5 | 5 | interface Engine { |
6 | 6 | |
7 | - /** |
|
7 | + /** |
|
8 | 8 | * Render the template content. |
9 | 9 | * |
10 | - * @param string $path |
|
11 | - * @param array $properties |
|
10 | + * @param string $path |
|
11 | + * @param array $properties |
|
12 | 12 | * @return string |
13 | 13 | */ |
14 | - public function render($path, $properties = []); |
|
14 | + public function render($path, $properties = []); |
|
15 | 15 | |
16 | 16 | } |
17 | 17 | \ No newline at end of file |
@@ -7,26 +7,26 @@ |
||
7 | 7 | |
8 | 8 | class Symfony implements Request { |
9 | 9 | |
10 | - protected $request; |
|
11 | - |
|
12 | - public function __construct() |
|
13 | - { |
|
14 | - $this->request = SymfonyRequest::createFromGlobals(); |
|
15 | - } |
|
16 | - |
|
17 | - public function all() |
|
18 | - { |
|
19 | - return $this->request->request->all(); |
|
20 | - } |
|
21 | - |
|
22 | - public function get($key) |
|
23 | - { |
|
24 | - return $this->request->request->get($key); |
|
25 | - } |
|
26 | - |
|
27 | - public function csrf() |
|
28 | - { |
|
29 | - return ['name' => '_token', 'value' => csrf_token()]; |
|
30 | - } |
|
10 | + protected $request; |
|
11 | + |
|
12 | + public function __construct() |
|
13 | + { |
|
14 | + $this->request = SymfonyRequest::createFromGlobals(); |
|
15 | + } |
|
16 | + |
|
17 | + public function all() |
|
18 | + { |
|
19 | + return $this->request->request->all(); |
|
20 | + } |
|
21 | + |
|
22 | + public function get($key) |
|
23 | + { |
|
24 | + return $this->request->request->get($key); |
|
25 | + } |
|
26 | + |
|
27 | + public function csrf() |
|
28 | + { |
|
29 | + return ['name' => '_token', 'value' => csrf_token()]; |
|
30 | + } |
|
31 | 31 | |
32 | 32 | } |
33 | 33 | \ No newline at end of file |
@@ -7,26 +7,26 @@ |
||
7 | 7 | |
8 | 8 | class Laravel implements Request { |
9 | 9 | |
10 | - protected $request; |
|
11 | - |
|
12 | - public function __construct(IlluminateRequest $request) |
|
13 | - { |
|
14 | - $this->request = $request; |
|
15 | - } |
|
16 | - |
|
17 | - public function all() |
|
18 | - { |
|
19 | - return $this->request->all(); |
|
20 | - } |
|
21 | - |
|
22 | - public function get($key) |
|
23 | - { |
|
24 | - return $this->request->get($key); |
|
25 | - } |
|
26 | - |
|
27 | - public function csrf() |
|
28 | - { |
|
29 | - return ['name' => '_token', 'value' => csrf_token()]; |
|
30 | - } |
|
10 | + protected $request; |
|
11 | + |
|
12 | + public function __construct(IlluminateRequest $request) |
|
13 | + { |
|
14 | + $this->request = $request; |
|
15 | + } |
|
16 | + |
|
17 | + public function all() |
|
18 | + { |
|
19 | + return $this->request->all(); |
|
20 | + } |
|
21 | + |
|
22 | + public function get($key) |
|
23 | + { |
|
24 | + return $this->request->get($key); |
|
25 | + } |
|
26 | + |
|
27 | + public function csrf() |
|
28 | + { |
|
29 | + return ['name' => '_token', 'value' => csrf_token()]; |
|
30 | + } |
|
31 | 31 | |
32 | 32 | } |
33 | 33 | \ No newline at end of file |
@@ -4,26 +4,26 @@ |
||
4 | 4 | |
5 | 5 | interface Request { |
6 | 6 | |
7 | - /** |
|
7 | + /** |
|
8 | 8 | * Fetch all values from the request. |
9 | 9 | * |
10 | 10 | * @return array |
11 | 11 | */ |
12 | - public function all(); |
|
12 | + public function all(); |
|
13 | 13 | |
14 | - /** |
|
14 | + /** |
|
15 | 15 | * Fetch a value from the request matching provided key. |
16 | 16 | * |
17 | 17 | * @var string |
18 | 18 | * @return mixed |
19 | 19 | */ |
20 | - public function get($key); |
|
20 | + public function get($key); |
|
21 | 21 | |
22 | - /** |
|
22 | + /** |
|
23 | 23 | * Return array of csrf template properties. |
24 | 24 | * |
25 | 25 | * @return array |
26 | 26 | */ |
27 | - public function csrf(); |
|
27 | + public function csrf(); |
|
28 | 28 | |
29 | 29 | } |
30 | 30 | \ No newline at end of file |