Imbo\Storage\GridFS::imageExists PHP Method

imageExists() public method

public imageExists ( $user, $imageIdentifier )
    public function imageExists($user, $imageIdentifier)
    {
        $cursor = $this->getGrid()->find(['user' => $user, 'imageIdentifier' => $imageIdentifier]);
        return (bool) $cursor->count();
    }