| 
				Server : Apache System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : matalashes ( 1004) PHP Version : 8.1.29 Disable Function : NONE Directory : /home/matalashes/public_html/kite.mata-lashes.com/tests/_support/Publishers/  | 
Upload File :  | 
<?php
/**
 * This file is part of CodeIgniter 4 framework.
 *
 * (c) CodeIgniter Foundation <admin@codeigniter.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */
namespace Tests\Support\Publishers;
use CodeIgniter\Publisher\Publisher;
final class TestPublisher extends Publisher
{
    /**
     * Return value for publish()
     *
     * @var bool
     */
    private static $result = true;
    /**
     * Base path to use for the source.
     *
     * @var string
     */
    protected $source = SUPPORTPATH . 'Files';
    /**
     * Base path to use for the destination.
     *
     * @var string
     */
    protected $destination = WRITEPATH;
    /**
     * Fakes an error on the given file.
     */
    public static function setResult(bool $result)
    {
        self::$result = $result;
    }
    /**
     * Fakes a publish event so no files are actually copied.
     */
    public function publish(): bool
    {
        $this->addPath('');
        return self::$result;
    }
}