YetiForceCompany/YetiForceCRM

View on GitHub
app/TextParser/AllPages.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?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}';
    }
}