Imbo\Storage\Doctrine::imageExists PHP Method

imageExists() public method

public imageExists ( $user, $imageIdentifier )
    public function imageExists($user, $imageIdentifier)
    {
        try {
            return (bool) $this->getField($user, $imageIdentifier, 'user');
        } catch (StorageException $e) {
            return false;
        }
    }