Files
firefly-iii/app/Helpers/Collection/Account.php

91 lines
1.4 KiB
PHP
Raw Normal View History

2015-05-16 13:06:38 +02:00
<?php
namespace FireflyIII\Helpers\Collection;
use Illuminate\Support\Collection;
/**
2015-05-16 19:08:54 +02:00
* @codeCoverageIgnore
2015-05-16 13:06:38 +02:00
* Class Account
*
* @package FireflyIII\Helpers\Collection
*/
class Account
{
/** @var Collection */
protected $accounts;
2016-02-05 09:25:15 +01:00
/** @var string */
2015-05-16 13:06:38 +02:00
protected $difference;
2016-02-05 09:25:15 +01:00
/** @var string */
2015-05-16 13:06:38 +02:00
protected $end;
2016-02-05 09:25:15 +01:00
/** @var string */
2015-05-16 13:06:38 +02:00
protected $start;
/**
* @return \Illuminate\Support\Collection
*/
public function getAccounts()
{
return $this->accounts;
}
/**
2016-02-05 09:25:15 +01:00
* @param Collection $accounts
2015-05-16 13:06:38 +02:00
*/
2016-02-05 09:25:15 +01:00
public function setAccounts(Collection $accounts)
2015-05-16 13:06:38 +02:00
{
$this->accounts = $accounts;
}
/**
2016-02-05 09:25:15 +01:00
* @return string
2015-05-16 13:06:38 +02:00
*/
public function getDifference()
{
return $this->difference;
}
/**
2016-02-05 09:25:15 +01:00
* @param string $difference
2015-05-16 13:06:38 +02:00
*/
2016-02-05 09:25:15 +01:00
public function setDifference(string $difference)
2015-05-16 13:06:38 +02:00
{
$this->difference = $difference;
}
/**
2016-02-05 09:25:15 +01:00
* @return string
2015-05-16 13:06:38 +02:00
*/
public function getEnd()
{
return $this->end;
}
/**
2016-02-05 09:25:15 +01:00
* @param string $end
2015-05-16 13:06:38 +02:00
*/
2016-02-05 09:25:15 +01:00
public function setEnd(string $end)
2015-05-16 13:06:38 +02:00
{
$this->end = $end;
}
/**
2016-02-05 09:25:15 +01:00
* @return string
2015-05-16 13:06:38 +02:00
*/
public function getStart()
{
return $this->start;
}
/**
2016-02-05 09:25:15 +01:00
* @param string $start
2015-05-16 13:06:38 +02:00
*/
2016-02-05 09:25:15 +01:00
public function setStart(string $start)
2015-05-16 13:06:38 +02:00
{
$this->start = $start;
}
2015-05-20 19:56:14 +02:00
}