ILIAS  release_8 Revision v8.23
Vendor\Package\Foo Class Reference
+ Inheritance diagram for Vendor\Package\Foo:
+ Collaboration diagram for Vendor\Package\Foo:

Public Member Functions

 sampleMethod ($a, $b=null)
 
 sampleMethod ($a, $b=null)
 

Static Public Member Functions

static bar ()
 
static bar ()
 

Detailed Description

Definition at line 28 of file example_cleaned.php.

Member Function Documentation

◆ bar() [1/2]

static Vendor\Package\Foo::bar ( )
staticfinal

Definition at line 41 of file example_cleaned.php.

Referenced by Vendor\Package\Foo\bar(), and Vendor\Package\Foo\sampleMethod().

42  {
43  // method body
44  }
+ Here is the caller graph for this function:

◆ bar() [2/2]

static Vendor\Package\Foo::bar ( )
staticfinal

◆ sampleMethod() [1/2]

Vendor\Package\Foo::sampleMethod (   $a,
  $b = null 
)

Definition at line 29 of file example_raw.php.

References Vendor\Package\$a, Vendor\Package\$b, Vendor\Package\$foo, Vendor\Package\Foo\bar(), and Vendor\Package\bar().

30  {
31  if ($a === $b)
32  {
33  bar();
34  }
35  elseif ($a > $b)
36  {
37  $foo->bar($arg1);
38  }
39  else
40  {
41  BazClass::bar($arg2, $arg3);
42  }
43  }
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
+ Here is the call graph for this function:

◆ sampleMethod() [2/2]

Vendor\Package\Foo::sampleMethod (   $a,
  $b = null 
)

Definition at line 30 of file example_cleaned.php.

References Vendor\Package\$a, Vendor\Package\$b, Vendor\Package\$foo, and Vendor\Package\bar().

31  {
32  if ($a === $b) {
34  } elseif ($a > $b) {
35  $foo->bar($arg1);
36  } else {
37  BazClass::bar($arg2, $arg3);
38  }
39  }
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
+ Here is the call graph for this function:

The documentation for this class was generated from the following files: