You are here

public static function UnexpectedValueException::proxyDirectoryNotWritable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/lib/Doctrine/Common/Proxy/Exception/UnexpectedValueException.php \Doctrine\Common\Proxy\Exception\UnexpectedValueException::proxyDirectoryNotWritable()

Parameters

string $proxyDirectory:

Return value

self

1 call to UnexpectedValueException::proxyDirectoryNotWritable()
ProxyGenerator::generateProxyClass in vendor/doctrine/common/lib/Doctrine/Common/Proxy/ProxyGenerator.php
Generates a proxy class file.

File

vendor/doctrine/common/lib/Doctrine/Common/Proxy/Exception/UnexpectedValueException.php, line 38

Class

UnexpectedValueException
Proxy Unexpected Value Exception.

Namespace

Doctrine\Common\Proxy\Exception

Code

public static function proxyDirectoryNotWritable($proxyDirectory) {
  return new self(sprintf('Your proxy directory "%s" must be writable', $proxyDirectory));
}