14 lines
150 B
PHP
14 lines
150 B
PHP
<?php
|
|
|
|
class A {
|
|
const C = ['foo'];
|
|
|
|
public static function test() {
|
|
return ['foo'];
|
|
}
|
|
}
|
|
|
|
function test() {
|
|
return ['foo'];
|
|
}
|