Completed
Push — master ( 9e931a...0439b5 )
by Kevin
05:22 queued 02:39
created
lib/Util/Translator/Translator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -91,6 +91,9 @@
 block discarded – undo
91 91
     }
92 92
 
93 93
 
94
+    /**
95
+     * @param string $textDomain
96
+     */
94 97
     protected function translatePart($translate, $result, $textDomain, $locale)
95 98
     {
96 99
         $newResult = parent::translate($result, $textDomain, $locale);
Please login to merge, or discard this patch.
lib/Assertions/Element/Clickable.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Magium\Assertions\Element;
4 4
 
5 5
 use Facebook\WebDriver\WebDriverBy;
6
-use Magium\AbstractTestCase;
7
-use Magium\InvalidTestTypeException;
8 6
 use Magium\WebDriver\ExpectedCondition;
9 7
 
10 8
 class Clickable extends AbstractSelectorAssertion
Please login to merge, or discard this patch.
lib/Assertions/Element/NotClickable.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Magium\Assertions\Element;
4 4
 
5 5
 use Facebook\WebDriver\WebDriverBy;
6
-use Magium\AbstractTestCase;
7
-use Magium\InvalidTestTypeException;
8 6
 use Magium\WebDriver\ExpectedCondition;
9 7
 
10 8
 class NotClickable extends AbstractSelectorAssertion
Please login to merge, or discard this patch.
lib/Cli/Command/ApiPing.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -5,13 +5,9 @@
 block discarded – undo
5 5
 use Guzzle\Http\Client;
6 6
 use Magium\Cli\Command\Test\TestSkeleton;
7 7
 use Magium\InvalidConfigurationException;
8
-use Magium\NotFoundException;
9 8
 use Magium\Util\Api\ApiConfiguration;
10 9
 use Symfony\Component\Console\Command\Command;
11
-use Symfony\Component\Console\Input\ArrayInput;
12
-use Symfony\Component\Console\Input\InputArgument;
13 10
 use Symfony\Component\Console\Input\InputInterface;
14
-use Symfony\Component\Console\Input\InputOption;
15 11
 use Symfony\Component\Console\Output\OutputInterface;
16 12
 
17 13
 class ApiPing extends Command
Please login to merge, or discard this patch.
lib/Introspection/Introspector.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -96,6 +96,9 @@  discard block
 block discarded – undo
96 96
         return $classes;
97 97
     }
98 98
 
99
+    /**
100
+     * @param string $class
101
+     */
99 102
     protected function processClass($class)
100 103
     {
101 104
         try {
@@ -137,6 +140,9 @@  discard block
 block discarded – undo
137 140
         return null;
138 141
     }
139 142
 
143
+    /**
144
+     * @param string $file
145
+     */
140 146
     protected function getClassNameInFile($file)
141 147
     {
142 148
         $namespace = $class = '';
Please login to merge, or discard this patch.
lib/WebDriver/WebDriver.php 2 patches
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -60,6 +60,10 @@  discard block
 block discarded – undo
60 60
     }
61 61
 
62 62
 
63
+    /**
64
+     * @param string $by
65
+     * @param string $selector
66
+     */
63 67
     public function logFind($by, $selector)
64 68
     {
65 69
         if ($this->logger instanceof Logger) {
@@ -136,6 +140,9 @@  discard block
 block discarded – undo
136 140
         return $element;
137 141
     }
138 142
 
143
+    /**
144
+     * @param string $selector
145
+     */
139 146
     public function elementExists($selector, $by = 'byId')
140 147
     {
141 148
         try {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Facebook\WebDriver\Exception\WebDriverException;
6 6
 use Facebook\WebDriver\Remote\DriverCommand;
7 7
 use Facebook\WebDriver\Remote\HttpCommandExecutor;
8
-use Facebook\WebDriver\Remote\RemoteExecuteMethod;
9 8
 use Facebook\WebDriver\Remote\RemoteWebDriver;
10 9
 use Facebook\WebDriver\Remote\WebDriverCommand;
11 10
 use Facebook\WebDriver\WebDriverBy;
Please login to merge, or discard this patch.