Preview: PropertyDeclarationUnitTest.inc
Size: 2.82 KB
/opt/cpanel/ea-wappspector/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Classes/PropertyDeclarationUnitTest.inc
<?php
class MyClass
{
public $var = null;
protected $var = null;
private $var = null;
$var = null;
var $var = null;
static $var = null;
public var $var = null; // Parse error.
public $_var = null;
protected $_var = null;
private $_var = null;
public $foo, $bar, $var = null;
public $foo,
$bar,
$var = null;
protected
$foo,
$bar;
}
class foo
{
const bar = <<<BAZ
qux
BAZ;
}
class ABC {
public static $propA;
protected static $propB;
private static $propC;
static public $propD;
static
protected
$propE;
static private /*comment*/ $propF;
}
class MyClass
{
public string $var = null;
protected ?Folder\ClassName $var = null;
var int $var = null;
static int $var = null;
private int $_var = null;
public $foo, $bar, $var = null;
public ?string $foo,
$bar,
$var = null;
protected
array
$foo,
$bar;
}
class MyClass
{
public string$var = null;
protected ?Folder\ClassName
$var = null;
public int $var = null;
public static int/*comment*/$var = null;
}
class ReadOnlyProp {
public readonly int $foo,
$bar,
$var = null;
protected readonly ?string $foo;
readonly array $foo;
readonly public int $wrongOrder1;
readonly protected ?string $wrongOrder2;
}
class FinalProperties {
final public int $foo,
$bar,
$var = null;
final protected (D|N)|false $foo;
final array $foo;
public FINAL ?int $wrongOrder1;
static protected final ?string $wrongOrder2;
}
class AsymmetricVisibility {
private(set) int $foo,
$bar,
$var = 5;
public private(set) readonly ?string $spaces;
protected(set) array $unfixed;
protected(set) public int $wrongOrder1;
private(set) protected ?string $wrongOrder2;
final protected private(set) static bool $correctOrder;
private(set) static final protected bool $wrongOrder3;
private(set) static protected final bool $wrongOrder4;
final protected(set) static public bool $wrongOrder5;
static public(set) final public bool $wrongOrder6;
protected private(set) static final bool $wrongOrder7;
protected final private(set) static bool $wrongOrder8;
static public final protected(set) bool $wrongOrder9;
public static public(set) final bool $wrongOrder10;
private(set) static final bool $wrongOrder11;
final static protected(set) bool $wrongOrder12;
static public(set) final bool $wrongOrder13;
}
abstract class AbstractProperties {
abstract public int $foo { get; }
abstract protected (D|N)|false $foo { set; }
abstract array $foo { get; }
public ABSTRACT ?int $wrongOrder1 { set; }
protected abstract ?string $wrongOrder2 { get; }
}
Directory Contents
Dirs: 0 × Files: 6