Completed
Pull Request — master (#694)
by Leszek
04:07
created
src/Entity/PropertyId.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
 		$this->serialization = strtoupper( $idSerialization );
28 28
 	}
29 29
 
30
+	/**
31
+	 * @param string $idSerialization
32
+	 */
30 33
 	private function assertValidIdFormat( $idSerialization ) {
31 34
 		if ( !is_string( $idSerialization ) ) {
32 35
 			throw new InvalidArgumentException( '$idSerialization must be a string; got ' . gettype( $idSerialization ) );
Please login to merge, or discard this patch.
src/Entity/ItemId.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
 		$this->serialization = strtoupper( $idSerialization );
28 28
 	}
29 29
 
30
+	/**
31
+	 * @param string $idSerialization
32
+	 */
30 33
 	private function assertValidIdFormat( $idSerialization ) {
31 34
 		if ( !is_string( $idSerialization ) ) {
32 35
 			throw new InvalidArgumentException( '$idSerialization must be a string; got ' . gettype( $idSerialization ) );
Please login to merge, or discard this patch.