class InvalidArgumentException in Zircon Profile 8
Same name in this branch
- 8 vendor/sebastian/recursion-context/src/InvalidArgumentException.php \SebastianBergmann\RecursionContext\InvalidArgumentException
- 8 vendor/symfony/process/Exception/InvalidArgumentException.php \Symfony\Component\Process\Exception\InvalidArgumentException
- 8 vendor/symfony/validator/Exception/InvalidArgumentException.php \Symfony\Component\Validator\Exception\InvalidArgumentException
- 8 vendor/symfony/dependency-injection/Exception/InvalidArgumentException.php \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
- 8 vendor/symfony/serializer/Exception/InvalidArgumentException.php \Symfony\Component\Serializer\Exception\InvalidArgumentException
- 8 vendor/zendframework/zend-feed/src/Exception/InvalidArgumentException.php \Zend\Feed\Exception\InvalidArgumentException
- 8 vendor/zendframework/zend-escaper/src/Exception/InvalidArgumentException.php \Zend\Escaper\Exception\InvalidArgumentException
- 8 vendor/zendframework/zend-stdlib/src/Exception/InvalidArgumentException.php \Zend\Stdlib\Exception\InvalidArgumentException
- 8 vendor/zendframework/zend-hydrator/src/Exception/InvalidArgumentException.php \Zend\Hydrator\Exception\InvalidArgumentException
- 8 vendor/psr/log/Psr/Log/InvalidArgumentException.php \Psr\Log\InvalidArgumentException
- 8 vendor/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php \Prophecy\Exception\InvalidArgumentException
- 8 vendor/zendframework/zend-feed/src/PubSubHubbub/Exception/InvalidArgumentException.php \Zend\Feed\PubSubHubbub\Exception\InvalidArgumentException
- 8 vendor/zendframework/zend-feed/src/Reader/Exception/InvalidArgumentException.php \Zend\Feed\Reader\Exception\InvalidArgumentException
- 8 vendor/zendframework/zend-feed/src/Writer/Exception/InvalidArgumentException.php \Zend\Feed\Writer\Exception\InvalidArgumentException
- 8 vendor/zendframework/zend-hydrator/src/Strategy/Exception/InvalidArgumentException.php \Zend\Hydrator\Strategy\Exception\InvalidArgumentException
- 8 vendor/zendframework/zend-stdlib/src/Hydrator/Strategy/Exception/InvalidArgumentException.php \Zend\Stdlib\Hydrator\Strategy\Exception\InvalidArgumentException
- 8 vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php \Doctrine\Instantiator\Exception\InvalidArgumentException
- 8 vendor/doctrine/common/lib/Doctrine/Common/Proxy/Exception/InvalidArgumentException.php \Doctrine\Common\Proxy\Exception\InvalidArgumentException
Same name and namespace in other branches
- 8.0 vendor/doctrine/common/lib/Doctrine/Common/Proxy/Exception/InvalidArgumentException.php \Doctrine\Common\Proxy\Exception\InvalidArgumentException
Proxy Invalid Argument Exception.
@link www.doctrine-project.org @since 2.4 @author Marco Pivetta <ocramius@gmail.com>
Hierarchy
- class \Doctrine\Common\Proxy\Exception\InvalidArgumentException extends \InvalidArgumentException implements ProxyException
Expanded class hierarchy of InvalidArgumentException
3 files declare their use of InvalidArgumentException
- AbstractProxyFactory.php in vendor/
doctrine/ common/ lib/ Doctrine/ Common/ Proxy/ AbstractProxyFactory.php - Autoloader.php in vendor/
doctrine/ common/ lib/ Doctrine/ Common/ Proxy/ Autoloader.php - ProxyGenerator.php in vendor/
doctrine/ common/ lib/ Doctrine/ Common/ Proxy/ ProxyGenerator.php
37 string references to 'InvalidArgumentException'
- AbstractOperationTest::testGetMessagesFromUnknownDomain in vendor/
symfony/ translation/ Tests/ Catalogue/ AbstractOperationTest.php - ApplicationTest::testFindWithAmbiguousAbbreviations in vendor/
symfony/ console/ Tests/ ApplicationTest.php - @dataProvider provideAmbiguousAbbreviations
- ArrayInputTest::testParseInvalidInput in vendor/
symfony/ console/ Tests/ Input/ ArrayInputTest.php - @dataProvider provideInvalidInput
- BuilderTest::pushShouldThrowOnInvalidInput in vendor/
stack/ builder/ tests/ unit/ Stack/ BuilderTest.php - @test
- BuilderTest::unshiftShouldThrowOnInvalidInput in vendor/
stack/ builder/ tests/ unit/ Stack/ BuilderTest.php - @test
File
- vendor/
doctrine/ common/ lib/ Doctrine/ Common/ Proxy/ Exception/ InvalidArgumentException.php, line 32
Namespace
Doctrine\Common\Proxy\ExceptionView source
class InvalidArgumentException extends BaseInvalidArgumentException implements ProxyException {
/**
* @return self
*/
public static function proxyDirectoryRequired() {
return new self('You must configure a proxy directory. See docs for details');
}
/**
* @param string $className
* @param string $proxyNamespace
*
* @return self
*/
public static function notProxyClass($className, $proxyNamespace) {
return new self(sprintf('The class "%s" is not part of the proxy namespace "%s"', $className, $proxyNamespace));
}
/**
* @param string $name
*
* @return self
*/
public static function invalidPlaceholder($name) {
return new self(sprintf('Provided placeholder for "%s" must be either a string or a valid callable', $name));
}
/**
* @return self
*/
public static function proxyNamespaceRequired() {
return new self('You must configure a proxy namespace');
}
/**
* @param Proxy $proxy
*
* @return self
*/
public static function unitializedProxyExpected(Proxy $proxy) {
return new self(sprintf('Provided proxy of type "%s" must not be initialized.', get_class($proxy)));
}
/**
* @param mixed $callback
*
* @return self
*/
public static function invalidClassNotFoundCallback($callback) {
$type = is_object($callback) ? get_class($callback) : gettype($callback);
return new self(sprintf('Invalid \\$notFoundCallback given: must be a callable, "%s" given', $type));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
InvalidArgumentException:: |
public static | function | ||
InvalidArgumentException:: |
public static | function | ||
InvalidArgumentException:: |
public static | function | ||
InvalidArgumentException:: |
public static | function | ||
InvalidArgumentException:: |
public static | function | ||
InvalidArgumentException:: |
public static | function |