magickatt/MultiContextBDDTalk

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

Summary

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