Completed
Push — master ( 49ea60...650849 )
by Marius
25s
created
src/Parsers/DdCoordinateParser.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -121,6 +121,7 @@
 block discarded – undo
121 121
 	 * 126 removed.
122 122
 	 *
123 123
 	 * @see GeoCoordinateParserBase::removeInvalidChars
124
+	 * @param string $string
124 125
 	 */
125 126
 	protected function removeInvalidChars( $string ) {
126 127
 		return str_replace( ' ', '', parent::removeInvalidChars( $string ) );
Please login to merge, or discard this patch.
src/Values/GlobeCoordinateValue.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@
 block discarded – undo
62 62
 		}
63 63
 	}
64 64
 
65
+	/**
66
+	 * @param string $globe
67
+	 */
65 68
 	protected function assertIsGlobe( $globe ) {
66 69
 		if ( !is_string( $globe ) ) {
67 70
 			throw new IllegalValueException( 'Can only construct GlobeCoordinateValue with a string globe parameter' );
Please login to merge, or discard this patch.