ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
FooObject Class Reference
+ Collaboration diagram for FooObject:

Public Member Functions

 __toString ()
 
 foo ()
 
 getFooBar ()
 

Static Public Member Functions

static reset ()
 

Data Fields

 $bar = 'bar'
 

Static Public Attributes

static $called = array('__toString' => 0, 'foo' => 0, 'getFooBar' => 0)
 

Detailed Description

Definition at line 292 of file SandboxTest.php.

Member Function Documentation

◆ __toString()

FooObject::__toString ( )

Definition at line 303 of file SandboxTest.php.

304 {
305 ++self::$called['__toString'];
306
307 return 'foo';
308 }

◆ foo()

FooObject::foo ( )

Definition at line 310 of file SandboxTest.php.

311 {
312 ++self::$called['foo'];
313
314 return 'foo';
315 }

◆ getFooBar()

FooObject::getFooBar ( )

Definition at line 317 of file SandboxTest.php.

318 {
319 ++self::$called['getFooBar'];
320
321 return 'foobar';
322 }

◆ reset()

static FooObject::reset ( )
static

Field Documentation

◆ $bar

FooObject::$bar = 'bar'

Definition at line 296 of file SandboxTest.php.

◆ $called


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