Skip to content

Commit

Permalink
fix gestione tipi client
Browse files Browse the repository at this point in the history
  • Loading branch information
armando committed Dec 21, 2018
1 parent c44b6d8 commit 1900e10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Types/GenericType.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function __construct( string $json = null ) {

foreach ( $obj as $key => $value ) {
if( ! property_exists( $this, $key ) ) {
throw new TypeException( sprintf( 'Does not exist "%s" property on Model %s', $key, get_class($this) ) );
continue;
}

if( is_object($value) ) {
Expand Down

0 comments on commit 1900e10

Please sign in to comment.