Your IP : 216.73.216.81


Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/codeception/stub/tests/_data/
Upload File :
Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/codeception/stub/tests/_data/DummyClass.php

<?php

declare(strict_types=1);

class DummyClass
{
    /**
     * @var int|string
     */
    protected $checkMe = 1;

    protected array $properties = ['checkMeToo' => 1];

    function __construct($checkMe = 1)
    {
        $this->checkMe = 'constructed: '.$checkMe;
    }

    /** @return string */
    public function helloWorld()
    {
        return 'hello';
    }

    /** @return string */
    public function goodByeWorld()
    {
        return 'good bye';
    }

    /** @return string */
    protected function notYourBusinessWorld()
    {
        return 'goAway';
    }

    /** @return string */
    public function getCheckMe()
    {
        return $this->checkMe;
    }

    public function getCheckMeToo() 
    {
        return $this->checkMeToo;
    }

    /** @return bool */
    public function call()
    {
        $this->targetMethod();
        return true;
    }

    /** @return bool */
    public function targetMethod()
    {
        return true;
    }

    /**
     * @throws Exception
     */
    public function exceptionalMethod()
    {
        throw new Exception('Catch it!');
    }

    public function __set($name, $value) 
    {
        if ($this->isMagical($name)) {
            $this->properties[$name] = $value;
        }
    }

    public function __get($name) 
    {
        if ($this->__isset($name)) {
            return $this->properties[$name];
        }
    }

    public function __isset($name) 
    {
        return $this->isMagical($name) && isset($this->properties[$name]);
    }

    /** @return bool */
    private function isMagical($name)
    {
        $reflectionClass = new ReflectionClass($this);
        return !$reflectionClass->hasProperty($name);
    }
}