@@ -12,7 +12,7 @@ |
||
12 | 12 | protected $viewPath; |
13 | 13 | |
14 | 14 | /** |
15 | - * @param string|View $view |
|
15 | + * @param string $view |
|
16 | 16 | * |
17 | 17 | * @return $this |
18 | 18 | */ |
@@ -145,10 +145,10 @@ |
||
145 | 145 | */ |
146 | 146 | public function __call($name, $arguments) |
147 | 147 | { |
148 | - if (! $this->hasAlias($name)) { |
|
148 | + if (!$this->hasAlias($name)) { |
|
149 | 149 | throw new BadMethodCallException($name); |
150 | 150 | } |
151 | 151 | |
152 | - return $this->makeClass($name, $arguments);; |
|
152 | + return $this->makeClass($name, $arguments); ; |
|
153 | 153 | } |
154 | 154 | } |