Completed
Push — develop ( 9a2af6...571b58 )
by Stuart
02:02
created
src/OsType/ValueBuilders/BuildTypeFromLsbRelease.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -65,6 +65,9 @@  discard block
 block discarded – undo
65 65
         return self::usingBinary("/usr/bin/lsb_release");
66 66
     }
67 67
 
68
+    /**
69
+     * @param string $pathToBinary
70
+     */
68 71
     public static function usingBinary($pathToBinary)
69 72
     {
70 73
         $output = self::getOutputFromBinary($pathToBinary);
@@ -119,6 +122,9 @@  discard block
 block discarded – undo
119 122
         return [$distroName, $distroVersion];
120 123
     }
121 124
 
125
+    /**
126
+     * @param string $fieldName
127
+     */
122 128
     private static function extractField($lines, $fieldName)
123 129
     {
124 130
         $matches = FilterForMatchingString::against($lines, $fieldName);
Please login to merge, or discard this patch.