File: WithPhpdocClass.php

package info (click to toggle)
php-phpspec-prophecy 1.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,140 kB
  • sloc: php: 9,123; makefile: 13
file content (17 lines) | stat: -rw-r--r-- 289 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php


namespace Fixtures\Prophecy;


/**
 * @method string name(string $gender = null)
 * @method mixed randomElement(array $array = array('a', 'b', 'c'))
 */
class WithPhpdocClass
{
    public function __call($name, $arguments)
    {
        // TODO: Implement __call() method.
    }
}