Completed
Pull Request — master (#55)
by Greg
02:19
created
src/StructuredData/RowsOfFields.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      * transformation object.
18 18
      *
19 19
      * @param FormatterOptions $options Options that affect output formatting.
20
-     * @return Consolidation\OutputFormatters\Transformations\TableTransformation
20
+     * @return \Consolidation\OutputFormatters\Transformations\TableTransformation
21 21
      */
22 22
     public function restructure(FormatterOptions $options)
23 23
     {
Please login to merge, or discard this patch.
src/Transformations/DomToArraySimplifier.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     }
17 17
 
18 18
     /**
19
-     * @param ReflectionClass $dataType
19
+     * @param \ReflectionClass $dataType
20 20
      */
21 21
     public function canSimplify(\ReflectionClass $dataType)
22 22
     {
Please login to merge, or discard this patch.
src/StructuredData/PropertyList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      * transformation object.
20 20
      *
21 21
      * @param FormatterOptions $options Options that affect output formatting.
22
-     * @return Consolidation\OutputFormatters\Transformations\TableTransformation
22
+     * @return TableTransformation
23 23
      */
24 24
     public function restructure(FormatterOptions $options)
25 25
     {
Please login to merge, or discard this patch.
src/Formatters/TableFormatter.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -123,6 +123,7 @@
 block discarded – undo
123 123
 
124 124
     /**
125 125
      * Add our custom table style(s) to the table.
126
+     * @param Table $table
126 127
      */
127 128
     protected static function addCustomTableStyles($table)
128 129
     {
Please login to merge, or discard this patch.
src/StructuredData/Xml/XmlSchema.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -34,6 +34,9 @@  discard block
 block discarded – undo
34 34
         $this->addXmlChildren($dom, $element, $elementName, $structuredData);
35 35
     }
36 36
 
37
+    /**
38
+     * @param \DOMElement $xmlParent
39
+     */
37 40
     protected function addXmlChildren(\DOMDocument $dom, $xmlParent, $elementName, $structuredData)
38 41
     {
39 42
         foreach ($structuredData as $key => $value) {
@@ -52,6 +55,9 @@  discard block
 block discarded – undo
52 55
         $this->addXmlData($dom, $xmlParent, $elementName, $value);
53 56
     }
54 57
 
58
+    /**
59
+     * @param string $childElementName
60
+     */
55 61
     protected function determineElementName($key, $childElementName, $value)
56 62
     {
57 63
         if (is_numeric($key)) {
Please login to merge, or discard this patch.
src/Transformations/Wrap/ColumnWidths.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Given the total amount of available space, and the width of
19 19
      * the columns to place, calculate the optimum column widths to use.
20
+     * @param double $availableWidth
20 21
      */
21 22
     public function calculate($availableWidth, DataCellWidths $dataWidths, DataCellWidths $minimumWidths)
22 23
     {
Please login to merge, or discard this patch.
src/Transformations/Wrap/DataCellWidths.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@  discard block
 block discarded – undo
53 53
         }
54 54
     }
55 55
 
56
+    /**
57
+     * @param integer $paddingInEachCell
58
+     */
56 59
     public function paddingSpace(
57 60
         $paddingInEachCell,
58 61
         $extraPaddingAtEndOfLine = 0,
@@ -103,6 +106,7 @@  discard block
 block discarded – undo
103 106
     /**
104 107
      * Need to think about the name of this function a bit.
105 108
      * Maybe second parameter is just a column count.
109
+     * @param double $availableWidth
106 110
      */
107 111
     public function adjustMinimumWidths($availableWidth, DataCellWidths $dataCellWidths)
108 112
     {
@@ -157,6 +161,7 @@  discard block
 block discarded – undo
157 161
 
158 162
     /**
159 163
      * Return the length of the specified column.
164
+     * @return string
160 165
      */
161 166
     public function width($key)
162 167
     {
@@ -203,6 +208,7 @@  discard block
 block discarded – undo
203 208
     /**
204 209
      * Ensure that every item in $widths that has a corresponding entry
205 210
      * in $minimumWidths is as least as large as the minimum value held there.
211
+     * @param DataCellWidths $minimumWidths
206 212
      */
207 213
     public function enforceMinimums($minimumWidths)
208 214
     {
Please login to merge, or discard this patch.