Completed
Branch master (a8fd42)
by Hugo
08:08
created
src/Application/Lib/ResponseWaitter.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -74,6 +74,9 @@  discard block
 block discarded – undo
74 74
         return true;
75 75
     }
76 76
 
77
+    /**
78
+     * @param string $url
79
+     */
77 80
     public function waitUntilAvailable($url, $requestOptions)
78 81
     {
79 82
         $this->progressBarStart();
@@ -87,6 +90,9 @@  discard block
 block discarded – undo
87 90
         $this->progressBarFinish();
88 91
     }
89 92
 
93
+    /**
94
+     * @param string $url
95
+     */
90 96
     public function waitUntilNotAvailable($url, $requestOptions)
91 97
     {
92 98
         $this->progressBarStart();
Please login to merge, or discard this patch.
src/Application/Selenium/Options/SeleniumStartOptions.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
     }
27 27
 
28 28
     /**
29
-     * @param string $path
30 29
      */
31 30
     public function enabledXvfb()
32 31
     {
Please login to merge, or discard this patch.
src/Application/Selenium/SeleniumStarter.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@  discard block
 block discarded – undo
33 33
         $this->exeFinder = $exeFinder;
34 34
     }
35 35
 
36
+    /**
37
+     * @param string $command
38
+     */
36 39
     private function setStartCommand($command)
37 40
     {
38 41
         $this->startCommand = $command;
@@ -72,7 +75,6 @@  discard block
 block discarded – undo
72 75
     }
73 76
 
74 77
     /**
75
-     * @param array $options
76 78
      *
77 79
      * @return string
78 80
      */
Please login to merge, or discard this patch.
src/Application/Selenium/SeleniumDownloader.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -76,13 +76,13 @@
 block discarded – undo
76 76
     private function setDownloadWithProgressBar()
77 77
     {
78 78
         $emitter = $this->httpClient->getEmitter();
79
-        $emitter->on('before', function (\GuzzleHttp\Event\BeforeEvent $event) {
79
+        $emitter->on('before', function(\GuzzleHttp\Event\BeforeEvent $event) {
80 80
             echo $event->getRequest();
81 81
         });
82
-        $emitter->once('progress', function (\GuzzleHttp\Event\ProgressEvent $event) {
82
+        $emitter->once('progress', function(\GuzzleHttp\Event\ProgressEvent $event) {
83 83
             $this->progressBar->start($event->downloadSize);
84 84
         });
85
-        $emitter->on('progress', function (\GuzzleHttp\Event\ProgressEvent $event) {
85
+        $emitter->on('progress', function(\GuzzleHttp\Event\ProgressEvent $event) {
86 86
             $this->progressBar->setProgress($event->downloaded);
87 87
         });
88 88
     }
Please login to merge, or discard this patch.