mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-11-19 06:48:19 +09:00
19 lines
184 B
Plaintext
19 lines
184 B
Plaintext
Trait alias
|
|
-----
|
|
<?php
|
|
class X {
|
|
use T {
|
|
exit
|
|
as die;
|
|
}
|
|
}
|
|
-----
|
|
/* do nothing */
|
|
-----
|
|
<?php
|
|
class X {
|
|
use T {
|
|
exit
|
|
as die;
|
|
}
|
|
} |