File tree Expand file tree Collapse file tree 4 files changed +12
-0
lines changed
Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ public function __construct( $idSerialization ) {
2626 parent ::__construct ( strtoupper ( $ idSerialization ) );
2727 }
2828
29+ /**
30+ * @param string $idSerialization
31+ */
2932 private function assertValidIdFormat ( $ idSerialization ) {
3033 if ( !is_string ( $ idSerialization ) ) {
3134 throw new InvalidArgumentException ( '$idSerialization must be a string ' );
Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ public function __construct( $idSerialization ) {
2222 parent ::__construct ( strtoupper ( $ idSerialization ) );
2323 }
2424
25+ /**
26+ * @param string $idSerialization
27+ */
2528 private function assertValidIdFormat ( $ idSerialization ) {
2629 if ( !is_string ( $ idSerialization ) ) {
2730 throw new InvalidArgumentException ( '$idSerialization must be a string ' );
Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ public function __construct( $serialization ) {
2525 $ this ->serialization = self ::normalizeIdSerialization ( $ serialization );
2626 }
2727
28+ /**
29+ * @param string $serialization
30+ */
2831 private static function assertValidSerialization ( $ serialization ) {
2932 if ( !is_string ( $ serialization ) ) {
3033 throw new InvalidArgumentException ( '$serialization must be a string ' );
Original file line number Diff line number Diff line change @@ -64,6 +64,9 @@ public function hasStatementWithGuid( $statementGuid ) {
6464 return array_key_exists ( $ statementGuid , $ this ->statements );
6565 }
6666
67+ /**
68+ * @param string $statementGuid
69+ */
6770 private function assertIsStatementGuid ( $ statementGuid ) {
6871 if ( !is_string ( $ statementGuid ) ) {
6972 throw new InvalidArgumentException ( '$statementGuid needs to be a string ' );
You can’t perform that action at this time.
0 commit comments