app/TextParser/AllPages.php
<?php
namespace App\TextParser;
/**
* All pages class.
*
* @package TextParser
*
* @copyright YetiForce S.A.
* @license YetiForce Public License 6.5 (licenses/LicenseEN.txt or yetiforce.com)
* @author Adrian Koń <a.kon@yetiforce.com>
*/
class AllPages extends Base
{
/** @var string */
public $name = 'LBL_ALL_PAGES';
/** @var mixed Parser type */
public $type = 'pdf';
/**
* Process.
*
* @return string
*/
public function process()
{
return '{a}';
}
}