File: defaultValue.php

package info (click to toggle)
php-nette-utils 4.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,460 kB
  • sloc: php: 4,146; xml: 9; makefile: 4
file content (47 lines) | stat: -rw-r--r-- 806 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php

declare(strict_types=1);

namespace NS;

define('DEFINED', 123);
define('NS_DEFINED', 'xxx');
const NS_DEFINED = 456;

interface Bar
{
	const DEFINED = 'xyz';
}

class ParentFoo
{
	public const PUBLIC_DEFINED = 'xyz';
}

class Foo extends ParentFoo
{
	public const PUBLIC_DEFINED = 'abc';
	protected const PROTECTED_DEFINED = 'abc';
	private const PRIVATE_DEFINED = 'abc';


	public function method(
		$a,
		$b = self::PUBLIC_DEFINED,
		$c = Foo::PUBLIC_DEFINED,
		$d = SELF::PUBLIC_DEFINED,
		$e = Foo::PROTECTED_DEFINED,
		$f = self::PROTECTED_DEFINED,
		$g = Foo::PRIVATE_DEFINED,
		$h = self::PRIVATE_DEFINED,
		$i = self::UNDEFINED,
		$j = Foo::UNDEFINED,
		$k = bar::DEFINED,
		$l = Undefined::ANY,
		$m = DEFINED,
		$n = UNDEFINED,
		$o = NS_DEFINED,
		$p = parent::PUBLIC_DEFINED,
	) {
	}
}