PHP Classes

File: vendor/phpspec/prophecy/fixtures/SpecialMethods.php

Recommend this page to a friend!
  Classes of Renato Lucena   PHP Pokemon Script   vendor/phpspec/prophecy/fixtures/SpecialMethods.php   Download  
File: vendor/phpspec/prophecy/fixtures/SpecialMethods.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Pokemon Script
Provides an API to manage a database of Pokemons
Author: By
Last change:
Date: 6 years ago
Size: 368 bytes
 

Contents

Class file image Download
<?php

namespace Fixtures\Prophecy;

class
SpecialMethods
{
    public function
__construct()
    {
    }

    function
__destruct()
    {
    }

    function
__call($name, $arguments)
    {
    }

    function
__sleep()
    {
    }

    function
__wakeup()
    {
    }

    function
__toString()
    {
        return
'';
    }

    function
__invoke()
    {
    }

}