@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * For the full copyright and license information, please view the LICENSE |
5 | 5 | * file that was distributed with this source code. |
6 | 6 | */ |
7 | -declare(strict_types=1); |
|
7 | +declare(strict_types = 1); |
|
8 | 8 | |
9 | 9 | namespace App\Models\Docs; |
10 | 10 | |
@@ -20,6 +20,6 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function saving(Docs $docs): void |
22 | 22 | { |
23 | - $docs->url = $docs->version . '/' . $docs->slug; |
|
23 | + $docs->url = $docs->version.'/'.$docs->slug; |
|
24 | 24 | } |
25 | 25 | } |
@@ -6,7 +6,7 @@ |
||
6 | 6 | * For the full copyright and license information, please view the LICENSE |
7 | 7 | * file that was distributed with this source code. |
8 | 8 | */ |
9 | -declare(strict_types=1); |
|
9 | +declare(strict_types = 1); |
|
10 | 10 | |
11 | 11 | namespace App\Models\Docs; |
12 | 12 |