Passed
Branch master (8172a3)
by Marc
05:28 queued 03:25
created
src/Contracts/Robots.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -4,13 +4,13 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/RobotsServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.