mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fixed some members
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@288501 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
518bdc8a5f
commit
8eb446821a
1 changed files with 2 additions and 2 deletions
|
@ -67,7 +67,7 @@
|
|||
<?php
|
||||
class SimpleClass
|
||||
{
|
||||
// invalid member declarations:
|
||||
// invalid property declarations:
|
||||
public $var1 = 'hello ' . 'world';
|
||||
public $var2 = <<<EOD
|
||||
hello world
|
||||
|
@ -76,7 +76,7 @@ EOD;
|
|||
public $var4 = self::myStaticMethod();
|
||||
public $var5 = $myVar;
|
||||
|
||||
// valid member declarations:
|
||||
// valid property declarations:
|
||||
public $var6 = myConstant;
|
||||
public $var7 = array(true, false);
|
||||
|
||||
|
|
Loading…
Reference in a new issue