1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00
invoiceninja/app/Console/Commands/TestOFX.php

45 lines
779 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Console\Commands;
2016-01-20 00:07:31 +01:00
use App\Services\BankAccountService;
2017-01-30 20:40:43 +01:00
use Illuminate\Console\Command;
2016-01-20 00:07:31 +01:00
/**
2017-01-30 20:40:43 +01:00
* Class TestOFX.
*/
2016-01-20 00:07:31 +01:00
class TestOFX extends Command
{
/**
* @var string
*/
2016-01-20 00:07:31 +01:00
protected $name = 'ninja:test-ofx';
/**
* @var string
*/
2016-01-20 00:07:31 +01:00
protected $description = 'Test OFX';
/**
* @var BankAccountService
*/
protected $bankAccountService;
/**
* TestOFX constructor.
*
* @param BankAccountService $bankAccountService
*/
2016-01-20 00:07:31 +01:00
public function __construct(BankAccountService $bankAccountService)
{
parent::__construct();
$this->bankAccountService = $bankAccountService;
}
2019-09-13 01:30:10 +02:00
public function handle()
2016-01-20 00:07:31 +01:00
{
2017-10-24 09:59:26 +02:00
$this->info(date('r').' Running TestOFX...');
2016-01-20 00:07:31 +01:00
}
2017-01-30 17:05:31 +01:00
}