5 lines
72 B
PHP
5 lines
72 B
PHP
|
<?php
|
||
|
interface A {
|
||
|
// props ignored in interface
|
||
|
var $a = 3;
|
||
|
}
|