@@ -4,13 +4,13 @@ |
||
4 | 4 | |
5 | 5 | interface Robots |
6 | 6 | { |
7 | - /** |
|
8 | - * Add a allow rule to the robots. |
|
9 | - * |
|
10 | - * @param string|array $directories |
|
11 | - * @return \Robots\Contracts\Robot; |
|
12 | - */ |
|
13 | - public function addAllow(string $directories): self; |
|
7 | + /** |
|
8 | + * Add a allow rule to the robots. |
|
9 | + * |
|
10 | + * @param string|array $directories |
|
11 | + * @return \Robots\Contracts\Robot; |
|
12 | + */ |
|
13 | + public function addAllow(string $directories): self; |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Add a comment to the robots. |
@@ -29,7 +29,7 @@ |
||
29 | 29 | */ |
30 | 30 | public function register() |
31 | 31 | { |
32 | - $this->app->singleton('robots', function ($app) { |
|
32 | + $this->app->singleton('robots', function($app) { |
|
33 | 33 | return new Robots(); |
34 | 34 | }); |
35 | 35 |