mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-09 07:26:02 +00:00
Add annotated methods.
This commit is contained in:
@@ -22,12 +22,26 @@ declare(strict_types=1);
|
||||
|
||||
namespace FireflyIII\Support\Facades;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use FireflyIII\Models\Account;
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Support\Facades\Facade;
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnore
|
||||
* Class Steam.
|
||||
* @method string balance(Account $account, Carbon $date)
|
||||
* @method string balanceIgnoreVirtual(Account $account, Carbon $date)
|
||||
* @method array balanceInRange(Account $account, Carbon $start, Carbon $end)
|
||||
* @method array balancesByAccounts(Collection $accounts, Carbon $date)
|
||||
* @method decrypt(int $isEncrypted, string $value)
|
||||
* @method array getLastActivities(array $accounts)
|
||||
* @method string negative(string $amount)
|
||||
* @method string|null opposite(string $amount = null)
|
||||
* @method int phpBytes(string $string)
|
||||
* @method tryDecrypt($value)
|
||||
* @method string positive(string $amount)
|
||||
*
|
||||
*/
|
||||
class Steam extends Facade
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user