@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | |
9 | 9 | class PageRepository |
10 | 10 | { |
11 | - protected $page; |
|
11 | + protected $page; |
|
12 | 12 | |
13 | 13 | public function __construct(Page $page) |
14 | 14 | { |
@@ -17,12 +17,12 @@ discard block |
||
17 | 17 | |
18 | 18 | public function find(string $id) |
19 | 19 | { |
20 | - return $this->page->where('id', $id)->first(); |
|
20 | + return $this->page->where('id', $id)->first(); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | public function create(Request $request) |
24 | 24 | { |
25 | - $page = new Page(); |
|
25 | + $page = new Page(); |
|
26 | 26 | |
27 | 27 | $meta = []; |
28 | 28 | foreach (ChuckSite::getSupportedLocales() as $langKey => $langValue) { |