Completed
Push — master ( ad6519...eaba5d )
by Marc
02:13
created
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.
src/Robots.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      */
90 90
     public function addComment(string $comment): RobotsContract
91 91
     {
92
-        $this->addLine(self::COMMENT . " $comment");
92
+        $this->addLine(self::COMMENT." $comment");
93 93
 
94 94
         return $this;
95 95
     }
Please login to merge, or discard this patch.