Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
Zend /
tests /
traits /
bugs /
Delete
Unzip
Name
Size
Permission
Date
Action
abstract-methods01.phpt
409
B
-rw-rw-r--
2022-10-31 11:36
abstract-methods02.phpt
356
B
-rw-rw-r--
2022-10-31 11:36
abstract-methods03.phpt
318
B
-rw-rw-r--
2022-10-31 11:36
abstract-methods04.phpt
551
B
-rw-rw-r--
2022-10-31 11:36
abstract-methods05.phpt
420
B
-rw-rw-r--
2022-10-31 11:36
abstract-methods06.phpt
482
B
-rw-rw-r--
2022-10-31 11:36
alias-semantics.phpt
334
B
-rw-rw-r--
2022-10-31 11:36
alias-semantics02.phpt
400
B
-rw-rw-r--
2022-10-31 11:36
alias01.phpt
413
B
-rw-rw-r--
2022-10-31 11:36
case-sensitive.phpt
414
B
-rw-rw-r--
2022-10-31 11:36
interfaces.phpt
343
B
-rw-rw-r--
2022-10-31 11:36
missing-trait.phpt
221
B
-rw-rw-r--
2022-10-31 11:36
overridding-conflicting-methods.phpt
437
B
-rw-rw-r--
2022-10-31 11:36
overridding-conflicting-property-initializer.phpt
544
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Overriding Conflicting Methods should not result in a notice/warning about collisions --FILE-- <?php error_reporting(E_ALL); trait THello1 { public function hello() { echo 'Hello'; } } trait THello2 { public function hello() { echo 'Hello'; } } class TraitsTest { use THello1; use THello2; public function hello() { echo 'Hello'; } } $test = new TraitsTest(); $test->hello(); ?> --EXPECT-- Hello