Subversion Repositories Applications.framework

Rev

Rev 5 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 aurelien 1
<?php
2
public function someFunctionWithAVeryLongName($firstParameter='something',
3
   $secondParameter='booooo', $third=null, $fourthParameter=false,
4
     $fifthParameter=123.12, $sixthParam=true
5
){
6
}
7
 
8
function someFunctionWithAVeryLongName2($firstParameter='something',
9
$secondParameter='booooo', $third=null, $fourthParameter=false,
10
$fifthParameter=123.12, $sixthParam=true
11
)  {
12
}
13
 
14
function blah() {
15
}
16
 
17
function blah()
18
{
19
}
20
 
21
class MyClass
22
{
23
 
24
    public function someFunctionWithAVeryLongName($firstParameter='something',
25
        $secondParameter='booooo', $third=null, $fourthParameter=false,
26
        $fifthParameter=123.12, $sixthParam=true
27
    ) /** w00t */ {
28
    }
29
 
30
    public function someFunctionWithAVeryLongName2(
31
        $firstParameter='something', $secondParameter='booooo', $third=null
32
    ) {
33
    }
34
 
35
    protected abstract function processTokenWithinScope(
36
        PHP_CodeSniffer_File $phpcsFile,
37
        $stackPtr,
38
        $currScope
39
    );
40
 
41
}
42
 
43
function getInstalledStandards(
44
    $includeGeneric=false,
45
    $standardsDir=''
46
)
47
{
48
}
49
 
50
?>