Completed
Pull Request — master (#11)
by
unknown
01:58
created
src/Transport/AbstractTransport.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -74,6 +74,8 @@  discard block
 block discarded – undo
74 74
 
75 75
     /**
76 76
      * {@inheritdoc}
77
+     * @param integer $option
78
+     * @param integer $value
77 79
      */
78 80
     public function hasOption($option, $value = null)
79 81
     {
@@ -98,6 +100,7 @@  discard block
 block discarded – undo
98 100
 
99 101
     /**
100 102
      * {@inheritdoc}
103
+     * @param integer $option
101 104
      */
102 105
     public function removeOption($option)
103 106
     {
@@ -113,6 +116,10 @@  discard block
 block discarded – undo
113 116
 
114 117
         $this->options = array_filter(
115 118
             $this->options,
119
+
120
+            /**
121
+             * @param integer $transportOption
122
+             */
116 123
             function ($transportOption) use ($option) {
117 124
                 /* @var OptionInterface $transportOption */
118 125
                 return !($transportOption->getOption() === $option);
Please login to merge, or discard this patch.