for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\base;
* InvalidArgumentException represents an exception caused by invalid arguments passed to a method.
*
* @author Qiang Xue <[email protected]>
* @since 2.0.14
class InvalidArgumentException extends InvalidParamException
yii\base\InvalidParamException
If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated annotation
ignore-deprecated
class InvalidArgumentException extends /** @scrutinizer ignore-deprecated */ InvalidParamException
{
* @return string the user-friendly name of this exception
public function getName()
return 'Invalid Argument';
}