b0y-101 Mini Shell


Current Path : E:/www/b-group.old/business/applicationmba/vendor/phpunit/phpunit/tests/_files/
File Upload :
Current File : E:/www/b-group.old/business/applicationmba/vendor/phpunit/phpunit/tests/_files/Mockable.php

<?php
class Mockable
{
    public $constructorCalled = false;
    public $cloned            = false;

    public function __construct()
    {
        $this->constructorCalled = false;
    }

    public function foo()
    {
        return true;
    }

    public function bar()
    {
        return true;
    }

    public function __clone()
    {
        $this->cloned = true;
    }
}

Copyright © 2019 by b0y-101