Completed
Pull Request — master (#3)
by
unknown
12:27
created
src/BaseFileStream.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -89,6 +89,10 @@
 block discarded – undo
89 89
      * @var \CommandInterface[]
90 90
      */
91 91
     protected $commands = [];
92
+
93
+    /**
94
+     * @param string $filename
95
+     */
92 96
     protected function runCommand($filename)
93 97
     {
94 98
         foreach ($this->commands as $command) {
Please login to merge, or discard this patch.
src/FileStream.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
     /**
75 75
      * Adds the given Filename to the internal Array
76
-     * @param $filename
76
+     * @param string $filename
77 77
      */
78 78
     protected function addFile($filename)
79 79
     {
@@ -104,6 +104,7 @@  discard block
 block discarded – undo
104 104
     /**
105 105
      * @inheritdoc
106 106
      * @param bool $count
107
+     * @param string $string
107 108
      * @throws \Exception
108 109
      */
109 110
     public function write($string, $count = true)
Please login to merge, or discard this patch.