Home
last modified time | relevance | path

Searched refs:method (Results 76 – 100 of 702) sorted by relevance

12345678910>>...29

/PHP-5.5/scripts/dev/generate-phpt/src/testcase/
H A DgtBasicTestCaseMethod.php15 * @param gtMethod $method
17 public function setMethod($method) { argument
18 $this->subject = $method;
H A DgtVariationTestCaseMethod.php20 * @param gtMethod $method
24 public function setUp(gtMethod $method, $argumentNumber, $variationData) { argument
25 $this->subject = $method;
/PHP-5.5/ext/date/tests/
H A DDateTime_extends_basic3.phpt2 Test DateTime class inheritance : with user space fromat() method
8 echo "*** Testing new DateTime() : with user format() method ***\n";
24 *** Testing new DateTime() : with user format() method ***
H A DDateTime_extends_basic2.phpt2 Test DateTime class inheritance : with user space __construct magic method
9 echo "*** Testing new DateTime() : with user space __construct magic method ***\n";
29 *** Testing new DateTime() : with user space __construct magic method ***
/PHP-5.5/ext/reflection/tests/
H A Dbug64239.phpt18 print_r(($method = $obj->getMethod("Bmethod")));
19 var_dump($method->getName());
20 var_dump($method->getShortName());
H A Dbug45765.phpt50 Method [ <user> public method test ] {
58 Method [ <user> public method test2 ] {
66 Method [ <user> public method test3 ] {
74 Method [ <user> public method test4 ] {
H A DReflectionClass_FileInfo_error.phpt10 foreach ($methods as $method) {
11 var_dump($rc->$method());
12 var_dump($rc->$method(null));
13 var_dump($rc->$method('X', 0));
H A DReflectionObject_FileInfo_error.phpt10 foreach ($methods as $method) {
11 var_dump($rc->$method());
12 var_dump($rc->$method(null));
13 var_dump($rc->$method('X', 0));
H A DReflectionParameter_invalidMethodInConstructor.phpt2 ReflectionParameter::__construct(): Invalid method as constructor
11 // Invalid class method
16 // Invalid object method
H A Dtraits001.phpt41 Method [ <user> public method someMethod ] {
62 Method [ <user> public method someOtherMethod ] {
66 Method [ <user> public method someMethod ] {
H A DReflectionClass_toString_003.phpt2 ReflectionClass::__toString() - verify 'inherits', 'overwrites' and 'prototype' parts of method rep…
47 Method [ <user> private method f ] {
71 Method [ <user, overwrites A> private method f ] {
116 Method [ <user, overwrites B> private method f ] {
/PHP-5.5/Zend/tests/
H A Dbug21888.phpt2 Bug #21888 (protected property and protected method of the same name)
14 print "protected method\n";
35 protected method
H A Dbug61025.phpt23 Warning: The magic method __invoke() must have public visibility and cannot be static in %sbug61025…
25 Warning: The magic method __invoke() must have public visibility and cannot be static in %sbug61025…
27 Fatal error: Call to private method Bar::__invoke() from context '' in %sbug61025.php on line %d
/PHP-5.5/ext/xmlrpc/tests/
H A Dbug45226.phpt12 echo xmlrpc_encode_request('method.call', array('date' => $d));
16 echo xmlrpc_encode_request('method.call', array('date' => $d));
22 <methodName>method.call</methodName>
40 <methodName>method.call</methodName>
/PHP-5.5/scripts/dev/
H A Dgenerate-phpt.phar246 The method name is not a valid PHP method name.
262 -m method name ....................Name of method, eg createAttribute
401 * Autoload method
1210 protected $method;
1224 $this->method = $method;
1261 * Set the method
1323 if($type =='method') {
1814 private $method;
1817 * Set the method name
1819 * @param string $method
[all …]
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_interface.phpt39 foreach ($methods as $k => $method) {
40 if (isset($expected[$method])) {
41 unset($expected[$method]);
44 if ($method == $classname) {
/PHP-5.5/ext/session/tests/
H A D001.phpt17 function method() { $this->yes = "done"; }
21 $baz->method();
24 $arr[3]->method();
H A D022.phpt17 function method() { $this->yes = "done"; }
21 $baz->method();
24 $arr[3]->method();
H A D003.phpt17 function method() { $this->yes++; }
24 $_SESSION["baz"]->method();
25 $_SESSION["arr"][3]->method();
H A D023.phpt17 function method() { $this->yes++; }
26 $baz->method();
27 $arr[3]->method();
/PHP-5.5/tests/classes/
H A Dstatic_mix_1.phpt2 ZE2 You cannot overload a static method with a non static method
26 Fatal error: Cannot make static method pass::show() non static in class fail in %s on line %d
H A Dstatic_mix_2.phpt2 ZE2 You cannot overload a non static method with a static method
27 Fatal error: Cannot make non static method pass::show() static in class fail in %s on line %d
/PHP-5.5/scripts/dev/generate-phpt/src/texts/
H A DmethodNotSpecified.txt2 You have given a class name but not supplied a method name to test.
3 The method name is required.
/PHP-5.5/ext/xsl/tests/
H A Dxslt002.phpt9 // changing output method to html
11 $res = $xp->query("/xsl:stylesheet/xsl:output/@method");
13 print "No or more than one xsl:output/@method found";
/PHP-5.5/ext/standard/tests/class_object/
H A Dmethod_exists_error_001.phpt5 /* Prototype : proto bool method_exists(object object, string method)
6 * Description: Checks if the class method exists
17 $method = 'string_val';
19 var_dump( method_exists($object, $method, $extra_arg) );

Completed in 56 milliseconds

12345678910>>...29