Пример #1
0
 /**
  * {@inheritdoc}
  */
 public function has($path)
 {
     try {
         $location = $this->applyPathPrefix($path);
         $exists = $this->container->objectExists($location);
     } catch (ClientErrorResponseException $e) {
         return false;
     }
     return $exists;
 }