magickatt/MultiContextBDDTalk

View on GitHub
backend/src/HistoricalMeteorological/Collection/Summary/EntryAggregateSummaryCollection.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
 
namespace HistoricalMeteorological\Collection\Summary;
 
use HistoricalMeteorological\Collection\EntryCollection;
 
class EntryAggregateSummaryCollection implements SummaryCollectionInterface
{
private $collection;
 
public function __construct(EntryCollection $collection)
{
$this->collection = $collection;
}
 
public function getCollection()
{
return $this->collection;
}
Expected 1 newline at end of file; 0 found
}