Dumplie\Metadata\Exception\NotFoundException::model PHP Method

model() public static method

public static model ( string $name ) : NotFoundException
$name string
return NotFoundException
    public static function model(string $name) : NotFoundException
    {
        return new self(sprintf("Model with name \"%s\" does not exists", $name));
    }

Usage Example

Beispiel #1
0
 /**
  * @param string $typeName
  *
  * @return TypeSchema
  * @throws NotFoundException
  */
 public function get(string $typeName) : TypeSchema
 {
     if (!array_key_exists($typeName, $this->types)) {
         throw NotFoundException::model($typeName);
     }
     return $this->types[$typeName];
 }