Completed
Push — master ( 39bc64...2bc6ba )
by Francesco
13:26
created
Command/AbstractCommand.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -74,8 +74,8 @@  discard block
 block discarded – undo
74 74
     }
75 75
 
76 76
     /**
77
-     * @param $question
78
-     * @param $default
77
+     * @param string $question
78
+     * @param string $default
79 79
      * @param string $sep
80 80
      *
81 81
      * @return string
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
     /**
92 92
      * @param \Symfony\Component\Console\Output\OutputInterface $output
93
-     * @param $text
93
+     * @param string $text
94 94
      * @param string $style
95 95
      */
96 96
     protected function writeSection(OutputInterface $output, $text, $style = 'bg=blue;fg=white')
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
     }
110 110
 
111 111
     /**
112
-     * @param $text
113
-     * @param $style
112
+     * @param string $text
113
+     * @param string $style
114 114
      *
115 115
      * @return string
116 116
      */
Please login to merge, or discard this patch.
Encryption.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
     /**
159 159
      * @param Key|KeyInterface $key The KeyInterface instance to unlock used for Defuse encryption system
160 160
      *
161
-     * @return \Defuse\Crypto\Key|\Defuse\Crypto\KeyProtectedByPassword The Defuse key
161
+     * @return \Defuse\Crypto\Key The Defuse key
162 162
      */
163 163
     private function unlockKey(Key $key)
164 164
     {
Please login to merge, or discard this patch.