Home
last modified time | relevance | path

Searched refs:abstract (Results 1 – 25 of 164) sorted by path

1234567

/PHP-5.5/
H A D.gdbinit426 printf "abstract "
H A DNEWS1779 . Allowed specifying paths in the abstract namespace for the functions
2597 . Fixed bug #63111 (is_callable() lies for abstract static method). (Dmitry)
3257 abstract constructor in the base class.
3370 . Added Tokyo Cabinet abstract DB support. (Michael Maclean)
3822 abstract classes). (Felipe)
6849 - Fixed bug #44127 (UNIX abstract namespace socket connect does not work).
7537 . Made RecursiveFilterIterator::accept() abstract as stated in documentation.
9175 - Changed abstract private methods to be not allowed anymore. (Stas)
9396 - Fixed bug #34299 (ReflectionClass::isInstantiable() returns true for abstract
9713 - Fixed bug #30126 (Enhancement for error message for abstract classes).
H A DREADME.STREAMS268 PHPAPI php_stream * php_stream_alloc(php_stream_ops * ops, void * abstract,
272 abstract holds implementation specific data that is relevant to this instance
308 The stream has a field called abstract that you can use to hold this data.
311 appropriately), and use the abstract pointer to refer to it.
330 /* now stream->abstract == state */
340 struct my_state * state = (struct my_state*)stream->abstract;
373 and free the resources you allocated for the abstract field. In the case of
/PHP-5.5/Zend/
H A DZEND_CHANGES138 The Zend Engine 2.0 introduces abstract classes and methods. An
139 abstract method only declares the method's signature and does not
140 provide an implementation. A class that contains abstract methods
141 needs to be declared abstract.
146 abstract class AbstractClass {
147 abstract public function test();
160 Classes that do not have abstract methods can be declared abstract
164 'abstract' should run without modifications.
192 Interfaces may contain abstract static methods.
220 declared as an abstract class.
[all …]
/PHP-5.5/Zend/tests/
H A D022.phpt6 abstract class Base
8 abstract function someMethod($param);
H A Dabstract-static.phpt2 Test for abstract static classes
5 abstract class TestClass
7 abstract static public function getName();
13 Strict Standards: Static function TestClass::getName() should not be abstract in %sabstract-static.…
H A Daccess_modifiers_004.phpt2 using multiple access modifiers (abstract methods)
7 abstract abstract function foo() {
14 Fatal error: Multiple abstract modifiers are not allowed in %s on line %d
H A Daccess_modifiers_007.phpt2 abstract final methods errmsg
7 final abstract function foo();
13 Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d
H A Daccess_modifiers_010.phpt12 abstract class a extends d {
18 abstract class b extends a {
H A Dargument_restriction_004.phpt9 abstract public function test(Foo $foo, array $bar, $option = NULL, $extra = 16777215) ;
H A Dbug32296.phpt5 abstract class space{
7 abstract protected function unfold();
10 abstract class shape extends space{
15 abstract class quad extends shape{
H A Dbug43200.phpt2 Bug #43200 (Interface implementation / inheritence not possible in abstract classes)
14 abstract class c {
H A Dbug43200_2.phpt2 Bug #43200.2 (Interface implementation / inheritence not possible in abstract classes)
10 abstract class B implements A {
11 abstract public function foo();
H A Dbug43323.phpt2 Bug #43323 (Wrong count abstract methods)
5 abstract class bar {
6 abstract public function bar();
12 Fatal error: Class foo contains 1 abstract method and must therefore be declared abstract or implem…
H A Dbug43703.phpt9 abstract class Pointcut
11 abstract public function evaluate(JoinPoint $joinPoint);
H A Dbug44414.phpt2 Bug #44414 (incomplete reporting about abstract methods)
5 abstract class A {
6 abstract function foo();
15 Fatal error: Class C contains 2 abstract methods and must therefore be declared abstract or impleme…
H A Dbug48667_1.phpt6 abstract class A implements Iterator, IteratorAggregate { }
H A Dbug48667_2.phpt6 abstract class A implements IteratorAggregate, Iterator { }
H A Dbug51421.phpt8 abstract class TestInterface {
9 abstract public function __construct(ExampleClass $var);
H A Dbug53748.phpt8 abstract protected function __construct($config);
H A Dbug54305.phpt9 abstract class AbstractClass {
H A Dbug60573.phpt68 abstract class Foo6 extends Base {
70 abstract public function setSelf(parent $s);
H A Dbug61782.phpt5 abstract class BaseClass {
6 abstract protected function __clone();
H A Dbug62358.phpt22 abstract class A implements I{
H A Dbug62907.phpt7 eval ("abstract class B extends A { }");
9 eval ("abstract class A { use T { T::__construct as __asconstruct; }}");

Completed in 60 milliseconds

1234567