summaryrefslogtreecommitdiff
path: root/tests/classes
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-5.4' into PHP-5.5Bob Weinand2014-06-151-7/+5
|\
| * Fixed wrong XFAIL test - already fixedBob Weinand2014-06-151-7/+5
| |
* | Fixed bug #65768: DateTimeImmutable::diff does not worknikita22062013-11-291-0/+36
| | | | | | | | | | | | This commit also prevents user classes from directly implementing DateTimeInterface, because ext/date relies on classes implementing it to support certain internal structures.
* | Merge branch 'PHP-5.4' into PHP-5.5Dmitry Stogov2013-11-291-0/+13
|\ \ | |/ | | | | | | * PHP-5.4: Added validation of class names in the autoload process
| * Added validation of class names in the autoload processDmitry Stogov2013-11-291-0/+13
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2013-08-041-2/+2
|\ \ | |/ | | | | | | | | | | | | * PHP-5.4: non living code related typo fixes Conflicts: Zend/zend_compile.c
| * non living code related typo fixesVeres Lajos2013-08-041-2/+2
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2013-06-232-0/+41
|\ \ | |/ | | | | | | | | * PHP-5.4: Adding test to verify that __sleep can handle parent classes' private members Adding test to stabelize keys used when converting objects to arrays
| * Adding test to verify that __sleep can handle parent classes' private membersMarco Pivetta2013-06-231-0/+23
| |
| * Adding test to stabelize keys used when converting objects to arraysMarco Pivetta2013-06-231-0/+18
| |
| * fix testsStanislav Malyshev2013-01-231-3/+3
| |
* | Fixed typo - inconsistent notice for undefined property (introduced by fix ↵Michael Moravec2013-04-101-7/+7
| | | | | | | | for #49348)
* | fix testsStanislav Malyshev2013-02-181-1/+13
| |
* | fix testsStanislav Malyshev2013-01-221-3/+3
|/
* Adding test for bug #63462Lars Strojny2013-01-061-0/+71
|
* Adding tests for private and protected propertiesMarco Pivetta2012-12-022-73/+154
|
* Fixing test according to @jpauli's suggestionsMarco Pivetta2012-12-021-1/+0
|
* Adding regression test for behavior of magic methods with unset public ↵Marco Pivetta2012-12-021-0/+74
| | | | | | | | properties Verifies that after having unset a public property, any access to it, be it read or write, causes calls to public magic methods Signed-off-by: Marco Pivetta <ocramius@gmail.com>
* Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-10-1081-0/+0
|\
| * Remove executable permission on phptXinchen Hui2012-10-1081-0/+0
| |
| * Fix test, parameter signatures was introduced only into 5.4Xinchen Hui2012-03-301-1/+1
| |
| * - Fix testFelipe Pena2011-11-261-1/+1
| |
| * clean up is_a test titleAlan Knowles2011-09-241-1/+1
| |
| * clean up is_a test, so that it covers more use cases - negative and positive ↵Alan Knowles2011-09-241-423/+94
| | | | | | | | testing
| * add is_a and is_subclass_of test with autoloader feature Alan Knowles2011-09-241-0/+707
| | | | | | | | Its a bit of an overkill, but should ensure breaks are easier to spot in future.
| * - Fix tests for \0 patch in PHP 5.3.Gustavo André dos Santos Lopes2010-11-221-1/+1
| | | | | | | | - Fix constants_error_004.phpt (closes bug #51901)
* | trivial change try to ci a "fake" mergeXinchen Hui2012-03-301-1/+0
| | | | | | | | | | seems now a empty merge will not be accepted by pre-receive-hook "remote: We cannot figure out what you comitted!"
* | - Fix testFelipe Pena2011-11-261-1/+1
| |
* | Changed silent conversion of array to string to produce a notice. (Patrick)Stanislav Malyshev2011-10-211-4/+4
| |
* | Improve the warning message of incompatible arguments. (#55719)Xinchen Hui2011-09-2311-15/+15
| | | | | | | | | | And fix tests related.
* | Silently casting an empty string, null or false into an object by adding a ↵Scott MacVicar2010-12-311-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | property is pretty non-intuitive. If the same value was 1 or true you get a warning and it halts. Since we can't break BC completely (yet) lets bump this from E_STRICT. Also added a new section to UPGRADING for engine changes. <?php $x = ''; // $x = null; // $x = false; $x->baz = 1; var_dump($x); $y = 1; $y->baz = 1; var_dump($y);
* | - Fix tests for \0 patch in PHP 5.3.Gustavo André dos Santos Lopes2010-11-221-1/+1
| | | | | | | | - Fix constants_error_004.phpt (closes bug #51901)
* | Fixed testIlia Alshanetsky2010-05-261-1/+1
|/
* - Fixed testsJani Taskinen2010-02-131-1/+1
|
* - Fixed testsFelipe Pena2009-12-043-3/+3
|
* Remove empty sections. Fix bad use of --SKIP--Zoe Slattery2009-07-211-1/+0
|
* Additional class related tests.Robin Fernandes2009-06-179-0/+121
|
* MFH: Changed error messages to use "cannot" instead of "can not" (meaning ↵Matt Wilmas2009-06-072-2/+2
| | | | "also can")
* - Fix testFelipe Pena2009-04-281-2/+2
|
* fix testAntony Dovgal2009-04-281-10/+10
|
* Add some class related tests, fix hard-coded object ID in serialize_001.phpt.Robin Fernandes2008-12-0518-8/+720
|
* add test for ArrayObject acting as array (for 5.3)Sean Coates2008-11-101-0/+14
|
* Fixed testDmitry Stogov2008-06-111-1/+13
|
* - MFH: Fixed bug #44769 (declaring private magic methods should throw error)Felipe Pena2008-06-031-12/+1
|
* Added some class tests; Replaced some hardcoded instance ids with %d.Steve Seear2008-03-196-12/+91
|
* fix testsAntony Dovgal2008-03-172-19/+32
|
* Fix tests (removed space on error message "Undefined index: ...")Felipe Pena2008-03-082-4/+4
|
* Add new tests for class/object functions and features.Robin Fernandes2008-03-067-0/+205
|
* Remove inconsistent behaviour when a protected static prop is overridden by ↵Robin Fernandes2008-03-031-1/+3
| | | | public static prop (details: http://turl.ca/phhhf ).
* - MFH Add E_DEPRECATED (Lars Strojny, Felipe Pena, Marcus)Marcus Boerger2008-02-231-1/+3
| | | | | [DOC] Finally added deprecation messages