19 lines
262 B
PHP
19 lines
262 B
PHP
<?php
|
|
|
|
namespace Maintained\Statistics;
|
|
|
|
use Maintained\TimeInterval;
|
|
|
|
/**
|
|
* Statistics of an open source project.
|
|
*
|
|
* @author Matthieu Napoli <matthieu@mnapoli.fr>
|
|
*/
|
|
class Statistics
|
|
{
|
|
/**
|
|
* @var TimeInterval
|
|
*/
|
|
public $resolutionTime;
|
|
}
|