File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/hamcrest/hamcrest-php/generator
Upload
[..]
FactoryCall.php (611 B)
Edit
Rename
Del
FactoryClass.php (1.35 KB)
Edit
Rename
Del
FactoryGenerator.php (2.93 KB)
Edit
Rename
Del
FactoryParameter.php (3.46 KB)
Edit
Rename
Del
GlobalFunctionFile.php (930 B)
Edit
Rename
Del
StaticMethodFile.php (773 B)
Edit
Rename
Del
parts/
Rename
Del
run.php (1.06 KB)
Edit
Rename
Del
Edit: FactoryCall.php
<?php /* Copyright (c) 2009 hamcrest.org */ class FactoryCall { /** * Hamcrest standard is two spaces for each level of indentation. * * @var string */ const INDENT = ' '; /** * @var FactoryMethod */ private $method; /** * @var string */ private $name; public function __construct(FactoryMethod $method, $name) { $this->method = $method; $this->name = $name; } public function getMethod() { return $this->method; } public function getName() { return $this->name; } }
Simpan