-
Notifications
You must be signed in to change notification settings - Fork 0
/
coding-standards-sample.php
50 lines (38 loc) · 1.12 KB
/
coding-standards-sample.php
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
48
49
<?php
namespace Respect\CodingStandards;
use Respect\CodingStandards\SampleNamespace\AnotherSample;
/** Sample class to describe coding standards */
class Sample
{
const A_SAMPLE_CONSTANT = 'val';
/** @var \Respect\AnotherPackage\SomeClass */
public $barBaz;
/** @var string */
public $fooBar;
/** @var mixed */
protected $loremIpsum;
public function __construct()
{
//constructors are not required to have DocComments.
}
/**
* Just a sample function
*
* @return boolean
*/
public function fooBarBaz(AnotherSample $sampleParam, $paramTwo)
{
if (false === $paramTwo)
$sampleParam->fooBar();
foreach ($sampleParam->listLoremIpsum() as $lipsumKey => $lipsumValue)
$lipsumValue->doSomething();
foreach ($fooBar as $baz)
if ('ok' === (string) $baz->bat())
return false;
return true;
}
protected function something()
{
//protected and private methods are not required to have DocComments.
}
}