Home
last modified time | relevance | path

Searched refs:abstract (Results 51 – 75 of 164) sorted by relevance

1234567

/PHP-5.5/ext/standard/tests/array/
H A Darray_filter_object.phpt14 * object of child class extending abstract class
34 // abstract class
35 abstract class AbstractClass
38 abstract function emptyMethod();
41 // class deriving above abstract class
H A Dsizeof_object2.phpt51 // abstract class
52 abstract class abstract_class
57 abstract protected function display();
60 // implement abstract 'abstract_class' class
/PHP-5.5/tests/classes/
H A Dinterface_must_be_implemented.phpt17 Fatal error: Class derived_a contains 1 abstract method and must therefore be declared abstract or …
H A Dmethod_override_optional_arg_002.phpt2 Omitting optional arg in method inherited from abstract class
6 abstract class A {
/PHP-5.5/Zend/tests/traits/bugs/
H A Dabstract-methods05.phpt2 The compatibility with the signature of abstract methods should be checked.
14 public abstract function hello($a);
H A Dabstract-methods06.phpt2 The compatibility with the signature of abstract methods should be checked. (also checking the seco…
14 public abstract function hello($a);
H A Dabstract-methods04.phpt2 Abstract Trait Methods should behave like common abstract methods and
9 public abstract function hello();
/PHP-5.5/Zend/tests/
H A Daccess_modifiers_010.phpt12 abstract class a extends d {
18 abstract class b extends a {
H A Dbug62907.phpt7 eval ("abstract class B extends A { }");
9 eval ("abstract class A { use T { T::__construct as __asconstruct; }}");
H A Dbug61782.phpt5 abstract class BaseClass {
6 abstract protected function __clone();
H A Dmagic_methods_008.phpt6 abstract class b {
7 abstract function __set($a, $b);
H A Dbug43200.phpt2 Bug #43200 (Interface implementation / inheritence not possible in abstract classes)
14 abstract class c {
/PHP-5.5/Zend/tests/traits/
H A Dinterface_002.phpt24 Fatal error: Class bar contains 1 abstract method and must therefore be declared abstract or implem…
H A Dlanguage006.phpt2 Express requirements of a trait by abstract methods.
11 abstract public function getWorld();
H A Dbug55424.phpt2 Bug #55424 (Method got missing from class when a trait defined an abstract method to express a requ…
13 abstract function setAttribute();
H A Dinheritance003.phpt7 abstract class Base {
8 public abstract function sayHello(array $a);
H A Dbug55355.phpt6 // A trait that has a abstract function
11 abstract function foo();
/PHP-5.5/ext/reflection/tests/
H A DReflectionObject_isInstantiable_basic.phpt16 abstract class abstractClass {
18 abstract function f2();
H A DReflectionClass_isInstantiable_basic.phpt16 abstract class abstractClass {
18 abstract function f2();
H A DReflectionMethod_invoke_error1.phpt20 abstract class AbstractClass {
21 abstract function foo();
71 string(53) "Trying to invoke abstract method AbstractClass::foo()"
H A DReflectionMethod_invokeArgs_error1.phpt13 abstract class AbstractClass {
14 abstract function foo();
/PHP-5.5/ext/spl/examples/
H A Dsearchiterator.inc5 * @brief abstract class SearchIterator
20 abstract class SearchIterator extends FilterIterator
/PHP-5.5/ext/tidy/tests/
H A D027.phpt10 abstract class BaseClass {
26 abstract public function run();
/PHP-5.5/ext/bz2/
H A Dbz2_filter.c83 if (!thisfilter || !thisfilter->abstract) { in php_bz2_decompress_filter()
88 data = (php_bz2_filter_data *)(thisfilter->abstract); in php_bz2_decompress_filter()
185 if (thisfilter && thisfilter->abstract) { in php_bz2_decompress_dtor()
186 php_bz2_filter_data *data = thisfilter->abstract; in php_bz2_decompress_dtor()
220 if (!thisfilter || !thisfilter->abstract) { in php_bz2_compress_filter()
225 data = (php_bz2_filter_data *)(thisfilter->abstract); in php_bz2_compress_filter()
291 if (thisfilter && thisfilter->abstract) { in php_bz2_compress_dtor()
292 php_bz2_filter_data *data = thisfilter->abstract; in php_bz2_compress_dtor()
/PHP-5.5/ext/zlib/
H A Dzlib_filter.c69 if (!thisfilter || !thisfilter->abstract) { in php_zlib_inflate_filter()
74 data = (php_zlib_filter_data *)(thisfilter->abstract); in php_zlib_inflate_filter()
159 if (thisfilter && thisfilter->abstract) { in php_zlib_inflate_dtor()
160 php_zlib_filter_data *data = thisfilter->abstract; in php_zlib_inflate_dtor()
194 if (!thisfilter || !thisfilter->abstract) { in php_zlib_deflate_filter()
199 data = (php_zlib_filter_data *)(thisfilter->abstract); in php_zlib_deflate_filter()
268 if (thisfilter && thisfilter->abstract) { in php_zlib_deflate_dtor()
269 php_zlib_filter_data *data = thisfilter->abstract; in php_zlib_deflate_dtor()

Completed in 37 milliseconds

1234567