for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Codeburner Framework.
*
* @author Alex Rohleder <[email protected]>
* @copyright 2016 Alex Rohleder
* @license http://opensource.org/licenses/MIT
*/
namespace Codeburner\Annotator\Exceptions;
* Exception throwed when a annotation method cannot support
* regex or grouping in annotation name.
class WildcardNotAllowedException extends AnnotationException
{
public function __construct($method)
parent::__construct("Annotator method `$method` does not allow wildcards in annotation name.");
}