Page MenuHomeDevCentral

FeatureReportEntry.php
No OneTemporary

FeatureReportEntry.php

<?php
namespace Nasqueron\Notifications\Config\Reporting;
class FeatureReportEntry {
///
/// Public properties
///
/**
* @var string
*/
public $name;
/**
* @var bool
*/
public $enabled;
///
/// Constructor
///
/**
* Initializes a new instance of the FeatureReportEntry class.
*
* @var name The feature name
* @var bool If the feature enabled, true. Otherwise, false.
*/
public function __construct (string $name, bool $enabled) {
$this->name = $name;
$this->enabled = $enabled;
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, May 15, 11:51 (19 h, 44 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3682621
Default Alt Text
FeatureReportEntry.php (603 B)

Event Timeline