Passed
Branch v1.2.0 (c418ea)
by Deric
02:47
created
lib/Kerberos.php 1 patch
Upper-Lower-Casing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
             ->write("export KRB5CCNAME=`mktemp /tmp/krb5cc_{$username}_XXXXXXXXXXXXX`;")
58 58
             ->write($command)
59 59
             ->write($this->configuration->get_password())
60
-            ->write('echo KRB5CCNAME:$KRB5CCNAME', TRUE)
60
+            ->write('echo KRB5CCNAME:$KRB5CCNAME', true)
61 61
             ->output();
62 62
 
63 63
         if (!preg_match("/KRB5CCNAME:(\/tmp\/krb5cc_.*)/", $shell->get_output(), $matches))
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * @param  array  $arguments klist command line arguments
79 79
      * @return int    return code (exit status code)
80 80
      */
81
-    final public function kdestroy(array $options = [], array $arguments = [], $strict = TRUE)
81
+    final public function kdestroy(array $options = [], array $arguments = [], $strict = true)
82 82
     {
83 83
         $command = (new Builder())
84 84
             ->setPrefix('kdestroy')
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      * @param  array  $arguments klist command line arguments
97 97
      * @return string klist results
98 98
      */
99
-    final public function klist(array $options = [], array $arguments = [], $strict = TRUE)
99
+    final public function klist(array $options = [], array $arguments = [], $strict = true)
100 100
     {
101 101
         $command = (new Builder())
102 102
             ->setPrefix('klist')
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * @param  array  $arguments kinit command line arguments
118 118
      * @return int    exit status code
119 119
      */
120
-    final public function kinit(array $options = [], array $arguments = [], $strict = TRUE)
120
+    final public function kinit(array $options = [], array $arguments = [], $strict = true)
121 121
     {
122 122
         $command = (new Builder())
123 123
             ->setPrefix('kinit')
Please login to merge, or discard this patch.
lib/Sessions/Shell.php 1 patch
Upper-Lower-Casing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     final public function shell()
56 56
     {
57
-        if (($this->stream = @ssh2_shell($this->connection)) === FALSE)
57
+        if (($this->stream = @ssh2_shell($this->connection)) === false)
58 58
         {
59 59
             throw new \RuntimeException($this->get_error_message());
60 60
         }
@@ -91,15 +91,15 @@  discard block
 block discarded – undo
91 91
      * @param  instance $terminal Terminal instance
92 92
      * @return object
93 93
      */
94
-    final public function write($command, $returncode = FALSE)
94
+    final public function write($command, $returncode = false)
95 95
     {
96
-        $command = ($returncode == FALSE) ? $command : $command . '; echo "RETURN_CODE:[$?]";';
96
+        $command = ($returncode == false) ? $command : $command . '; echo "RETURN_CODE:[$?]";';
97 97
         $write_count = 0;
98 98
         $string_len = strlen($command . PHP_EOL);
99 99
         while ($write_count < $string_len)
100 100
         {
101 101
             $fwrite_count = fwrite($this->stream, substr($command . PHP_EOL, $write_count), 1024);
102
-            if ($fwrite_count === FALSE)
102
+            if ($fwrite_count === false)
103 103
             {
104 104
                 throw new \RuntimeException('failed to write command to stream');
105 105
             }
Please login to merge, or discard this patch.
lib/Sessions/SFTP.php 1 patch
Upper-Lower-Casing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -49,14 +49,14 @@  discard block
 block discarded – undo
49 49
      */
50 50
     final public function copy($srcfile, $destfile)
51 51
     {
52
-        if ($this->is_file($srcfile) === FALSE)
52
+        if ($this->is_file($srcfile) === false)
53 53
         {
54 54
             $this->set_error('Local file ' . $srcfile . ' does not exist.');
55 55
             $this->set_exitstatus(1);
56 56
             return;
57 57
         }
58 58
 
59
-        if (@copy($this->sftp_url($srcfile), $this->sftp_url($destfile)) === FALSE)
59
+        if (@copy($this->sftp_url($srcfile), $this->sftp_url($destfile)) === false)
60 60
         {
61 61
             $this->set_error($this->get_error_message());
62 62
             $this->set_exitstatus(1);
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         {
83 83
             if ($this->is_file($file))
84 84
             {
85
-                if (@unlink($this->sftp_url($file)) === FALSE)
85
+                if (@unlink($this->sftp_url($file)) === false)
86 86
                 {
87 87
                     $this->set_error($this->get_error_message());
88 88
                     $this->set_exitstatus(1);
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         $files = [];
129 129
         if ($handle = @opendir($this->sftp_url($path)))
130 130
         {
131
-            while (($file = @readdir($handle)) !== FALSE)
131
+            while (($file = @readdir($handle)) !== false)
132 132
             {
133 133
                 if ($file != '.' && $file != '..')
134 134
                 {
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
                         $files['directories'][] = $filename;
139 139
                     }
140 140
 					
141
-                    if ($this->is_dir($filename) === FALSE)
141
+                    if ($this->is_dir($filename) === false)
142 142
                     {
143 143
                         $files['files'][] = $filename;
144 144
                     }
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
      */
160 160
     final public function glob($directory, $pattern = '')
161 161
     {
162
-        if ($this->is_dir($directory) == FALSE)
162
+        if ($this->is_dir($directory) == false)
163 163
         {
164 164
             $this->set_error($this->get_error_message());
165 165
             $this->set_exitstatus(1);
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
         }
168 168
 		
169 169
         $handle = opendir($this->sftp_url($directory));
170
-        while (($file = readdir($handle)) !== FALSE)
170
+        while (($file = readdir($handle)) !== false)
171 171
         {
172 172
             $files[] = preg_grep('/(^.*' . $pattern . '.*$)/', explode(PHP_EOL, $file));
173 173
         }
@@ -200,12 +200,12 @@  discard block
 block discarded – undo
200 200
      * @param  int    $chgrp       change gid for directory
201 201
      * @return bool
202 202
      */
203
-    final public function mkdir($directories, $mode = 0777, $recursive = FALSE)
203
+    final public function mkdir($directories, $mode = 0777, $recursive = false)
204 204
     {
205 205
         $directories = !is_array($directories) ? [$directories] : $directories;
206 206
         foreach ($directories as $directory)
207 207
         {
208
-            if (@mkdir($this->sftp_url($directory), $mode, $recursive) === FALSE)
208
+            if (@mkdir($this->sftp_url($directory), $mode, $recursive) === false)
209 209
             {
210 210
                 $this->set_error($this->get_error_message());
211 211
                 $this->set_exitstatus(1);
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
      */
226 226
     final public function rename($oldfile, $newfile)
227 227
     {
228
-        if ($this->is_file($oldfile) === FALSE)
228
+        if ($this->is_file($oldfile) === false)
229 229
         {
230 230
             $this->set_error('Local file ' . $oldfile . ' does not exist.');
231 231
             $this->set_exitstatus(1);
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
                 $files = array_key_exists('files', $stdout) ? $stdout['files'] : [];
266 266
                 if (count($files) == 0)
267 267
                 {
268
-                    if (@rmdir($this->sftp_url($directory)) === FALSE)
268
+                    if (@rmdir($this->sftp_url($directory)) === false)
269 269
                     {
270 270
                         $this->set_error($this->get_error_message());
271 271
                         $this->set_exitstatus(1);
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
     {
343 343
         $statinfo = ssh2_sftp_stat($this->sftp, $path);
344 344
 
345
-        if ($statinfo === FALSE)	
345
+        if ($statinfo === false)	
346 346
         {
347 347
             $this->set_error($this->get_error_message());
348 348
             $this->set_exitstatus(0);
Please login to merge, or discard this patch.
lib/Sessions/SSH.php 1 patch
Upper-Lower-Casing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -42,14 +42,14 @@  discard block
 block discarded – undo
42 42
      *
43 43
      * @var string
44 44
      */
45
-    public $mode = NULL;
45
+    public $mode = null;
46 46
 
47 47
     /**
48 48
      * Filename path.
49 49
      *
50 50
      * @var string
51 51
      */
52
-    public $filename = NULL;
52
+    public $filename = null;
53 53
 
54 54
     /**
55 55
      * Constructor.
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      */
93 93
     final public function get_mode()
94 94
     {
95
-        return ($this->mode === NULL) ? self::WAIT : $this->mode;
95
+        return ($this->mode === null) ? self::WAIT : $this->mode;
96 96
     }
97 97
 
98 98
     /**
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      * @param  instance $terminal Terminal instance
113 113
      * @return void
114 114
      */
115
-    final public function exec($command, Terminal $terminal = NULL)
115
+    final public function exec($command, Terminal $terminal = null)
116 116
     {
117 117
         if (!$terminal instanceof Terminal)
118 118
         {
@@ -167,11 +167,11 @@  discard block
 block discarded – undo
167 167
             $terminal->get_height()
168 168
         );
169 169
         
170
-        if ($stream === FALSE)
170
+        if ($stream === false)
171 171
         {
172 172
             throw new \RuntimeException($this->get_error_message());
173 173
         }
174
-        stream_set_blocking($stream, TRUE);
174
+        stream_set_blocking($stream, true);
175 175
         return $stream;
176 176
     }
177 177
 
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
         do
192 192
         {
193 193
             sleep(1);
194
-            if ($out === FALSE || $err === FALSE)
194
+            if ($out === false || $err === false)
195 195
             {
196 196
                 $stderr .= 'STDOUT and/or STDERR stream(s) closed unexpectedly.';
197 197
                 return 1;
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
      */
238 238
     final private function exec_file($stream)
239 239
     {
240
-        if ($this->get_filename() === NULL)
240
+        if ($this->get_filename() === null)
241 241
         {
242 242
             throw new \RuntimeException('A valid filename path must be provided.');
243 243
         }
Please login to merge, or discard this patch.
lib/Terminal.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      *
17 17
      * @var string
18 18
      */
19
-    private $pty = NULL;
19
+    private $pty = null;
20 20
 
21 21
     /**
22 22
      * Environmental variables (associative array).
Please login to merge, or discard this patch.
lib/Authentication/Hostbased.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
             $this->privkeyfile,
83 83
             $this->passphrase,
84 84
             $this->local_username
85
-        ) === FALSE)
85
+        ) === false)
86 86
         {
87 87
             throw new \RuntimeException('Hostbased file authentication failed.');
88 88
         }
Please login to merge, or discard this patch.
lib/Authentication/PublicKey.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
             $this->pubkeyfile,
66 66
             $this->privkeyfile,
67 67
             $this->passphrase
68
-        ) === FALSE)
68
+        ) === false)
69 69
         {
70 70
             throw new \RuntimeException('Public key based authentication failed.');
71 71
         }
Please login to merge, or discard this patch.
lib/Authentication/Password.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      */
44 44
     final public function authenticate($resource)
45 45
     {
46
-        if (@ssh2_auth_password($resource, $this->username, $this->password) === FALSE)
46
+        if (@ssh2_auth_password($resource, $this->username, $this->password) === false)
47 47
         {
48 48
             throw new \RuntimeException('Password based authentication failed.');
49 49
         }
Please login to merge, or discard this patch.
lib/Authentication/Agent.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     final public function authenticate($resource)
37 37
     {
38
-        if (@ssh2_auth_agent($resource, $this->username) === FALSE)
38
+        if (@ssh2_auth_agent($resource, $this->username) === false)
39 39
         {
40 40
             throw new \RuntimeException('Agent based authentication failed.');
41 41
         }
Please login to merge, or discard this patch.