當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Assertion::directory方法代碼示例

本文整理匯總了PHP中Assert\Assertion::directory方法的典型用法代碼示例。如果您正苦於以下問題:PHP Assertion::directory方法的具體用法?PHP Assertion::directory怎麽用?PHP Assertion::directory使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Assert\Assertion的用法示例。


在下文中一共展示了Assertion::directory方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setFilename

 /**
  * @param string $filename
  */
 public function setFilename($filename)
 {
     Assertion::string($filename, 'Invalid filename.');
     Assertion::directory(dirname($filename), 'The selected directory does not exist.');
     Assertion::writeable(dirname($filename), 'The selected directory is not writable.');
     $this->filename = $filename;
 }
開發者ID:spomky-labs,項目名稱:jose,代碼行數:10,代碼來源:Storable.php

示例2: __construct

 public function __construct($directory)
 {
     Assertion::directory($directory);
     Assertion::readable($directory);
     $directory .= substr($directory, -1) === '/' ? '' : '/';
     //add ending slash
     $this->directory = $directory;
 }
開發者ID:mathielen,項目名稱:report-write-engine,代碼行數:8,代碼來源:ExcelFileRepository.php

示例3: testDirectory

 public function testDirectory()
 {
     Assertion::directory(__DIR__);
     $this->setExpectedException('Assert\\AssertionFailedException', null, Assertion::INVALID_DIRECTORY);
     Assertion::directory(__DIR__ . '/does-not-exist');
 }
開發者ID:GerDner,項目名稱:luck-docker,代碼行數:6,代碼來源:AssertTest.php

示例4: setProjectDirectory

 /**
  * Sets the project directory.
  *
  * @param string $projectDirectory
  *
  * @return $this
  */
 public function setProjectDirectory($projectDirectory)
 {
     Assertion::directory($projectDirectory);
     $this->projectDirectory = $projectDirectory;
     return $this;
 }
開發者ID:mykanoa,項目名稱:kanoa,代碼行數:13,代碼來源:DeploymentPayload.php

示例5: __construct

 /**
  * __construct()
  *
  * @param ConfigLoader $configLoader Config loader
  * @param string       $path         Config files path
  */
 public function __construct(ConfigLoader $configLoader, $path)
 {
     Assertion::directory($path);
     $this->path = $path;
     $this->configLoader = $configLoader;
 }
開發者ID:mykanoa,項目名稱:kanoa,代碼行數:12,代碼來源:ConfigHandler.php

示例6: iSpecifyThePath

 /**
  * @Given /^I specify the path "([^"]*)"$/
  */
 public function iSpecifyThePath($arg1)
 {
     $this->path = $arg1;
     Assertion::directory(getcwd() . '/' . $this->path);
 }
開發者ID:benconstable,項目名稱:quick-configure,代碼行數:8,代碼來源:CommandDumpContext.php


注:本文中的Assert\Assertion::directory方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。