Move DateFactory into Services namespace

This commit is contained in:
James Brooks
2017-01-30 13:30:45 +00:00
parent 2df0946bac
commit 27847b6814
20 changed files with 41 additions and 40 deletions

View File

@@ -11,7 +11,7 @@
namespace CachetHQ\Cachet\Repositories\Metric;
use CachetHQ\Cachet\Dates\DateFactory;
use CachetHQ\Cachet\Services\Dates\DateFactory;
use CachetHQ\Cachet\Models\Metric;
use DateInterval;
@@ -32,7 +32,7 @@ class MetricRepository
/**
* The date factory instance.
*
* @var \CachetHQ\Cachet\Dates\DateFactory
* @var \CachetHQ\Cachet\Services\Dates\DateFactory
*/
protected $dates;
@@ -40,7 +40,7 @@ class MetricRepository
* Create a new metric repository class.
*
* @param \CachetHQ\Cachet\Repositories\Metric\MetricInterface $repository
* @param \CachetHQ\Cachet\Dates\DateFactory $dates
* @param \CachetHQ\Cachet\Services\Dates\DateFactory $dates
*
* @return void
*/