Atrauzzi\LaravelDoctrine\ConfigMappingDriver::isTransient PHP 메소드

isTransient() 공개 메소드

This is only the case if it is either mapped as an Entity or a MappedSuperclass.
public isTransient ( string $className ) : boolean
$className string
리턴 boolean
    public function isTransient($className)
    {
        return array_key_exists($className, config('doctrine.mappings', []));
    }