PHP Class PartKeepr\CoreBundle\System\SystemInformationRecord

This is basically a category, a name and a value. No logic included within the class. For example, records could hold: Name Value Category ===================================================================================== Doctrine ORM 2.1.0 Libraries Doctrine DBAL 2.1.0 Libraries Doctrine Migrations git-f87afe9223dbfecaaddb Libraries PHP Version 5.3.2 Server Software Operating System Linux (Funtoo Linux - baselayout 2.1.8) Server Software
Datei anzeigen Open project: partkeepr/PartKeepr

Public Properties

Property Type Description
$category string Holds the category name.
$name string Holds the name.
$value mixed Holds the value.

Public Methods

Method Description
__construct ( string $name, mixed $value, string $category ) Creates a new system information record.

Method Details

__construct() public method

Creates a new system information record.
public __construct ( string $name, mixed $value, string $category )
$name string
$value mixed
$category string

Property Details

$category public_oe property

Holds the category name.
public string $category
return string

$name public_oe property

Holds the name.
public string $name
return string

$value public_oe property

Holds the value.
public mixed $value
return mixed