for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Greppy package.
*
* (c) Daniel Ribeiro <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Relax\Greppy\Pattern\Element\Metacharacter;
use Relax\Greppy\Pattern\ElementInterface;
/**
* Any character element.
* @author Daniel Ribeiro <[email protected]>
* @package Relax\Relax\Greppy\Pattern\Element\Metacharacter
class Any implements ElementInterface
{
* Gets the string representation of the element for usage inside patterns.
* @return string
public function __toString()
return ".";
}