2016-10-08 14:54:32 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* AccountTasker.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Repositories\Account;
|
|
|
|
|
2016-10-08 15:59:58 +02:00
|
|
|
use FireflyIII\User;
|
|
|
|
|
2016-10-08 14:54:32 +02:00
|
|
|
/**
|
|
|
|
* Class AccountTasker
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Repositories\Account
|
|
|
|
*/
|
|
|
|
class AccountTasker
|
|
|
|
{
|
2016-10-08 15:59:58 +02:00
|
|
|
/** @var User */
|
|
|
|
private $user;
|
2016-10-08 14:54:32 +02:00
|
|
|
|
2016-10-08 15:59:58 +02:00
|
|
|
/**
|
|
|
|
* AttachmentRepository constructor.
|
|
|
|
*
|
|
|
|
* @param User $user
|
|
|
|
*/
|
|
|
|
public function __construct(User $user)
|
|
|
|
{
|
|
|
|
$this->user = $user;
|
|
|
|
}
|
2016-10-08 14:54:32 +02:00
|
|
|
}
|