for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Funivan\PhpTokenizer\Pattern;
use Funivan\PhpTokenizer\Collection;
/**
* @deprecated
*/
class Pattern extends PatternMatcher {
* @inheritdoc
public function __construct(Collection $collection) {
trigger_error('Deprecated. Use matcher instead', E_USER_DEPRECATED);
parent::__construct($collection);
}