mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-19 02:45:58 +00:00
New but empty converters.
This commit is contained in:
@@ -28,7 +28,7 @@ class AssetAccountName extends BasicConverter implements ConverterInterface
|
|||||||
*/
|
*/
|
||||||
public function convert($value)
|
public function convert($value)
|
||||||
{
|
{
|
||||||
throw new FireflyException('Importer with name AssetAccountId has not yet been configured.');
|
throw new FireflyException('Importer with name AssetAccountName has not yet been configured.');
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
34
app/Import/Converter/AssetAccountNumber.php
Normal file
34
app/Import/Converter/AssetAccountNumber.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* AssetAccountNumber.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class AssetAccountNumber
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class AssetAccountNumber extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name AssetAccountNumber has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/BillId.php
Normal file
34
app/Import/Converter/BillId.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* BillId.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class BillId
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class BillId extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name BillId has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/BillName.php
Normal file
34
app/Import/Converter/BillName.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* BillName.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class BillName
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class BillName extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name BillName has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/BudgetId.php
Normal file
34
app/Import/Converter/BudgetId.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* BudgetId.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class BudgetId
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class BudgetId extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name BudgetId has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/BudgetName.php
Normal file
34
app/Import/Converter/BudgetName.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* BudgetName.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class BudgetName
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class BudgetName extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name BudgetName has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/CategoryId.php
Normal file
34
app/Import/Converter/CategoryId.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* CategoryId.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class CategoryId
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class CategoryId extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name CategoryId has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/CategoryName.php
Normal file
34
app/Import/Converter/CategoryName.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* CategoryName.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class CategoryName
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class CategoryName extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name CategoryName has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/CurrencyId.php
Normal file
34
app/Import/Converter/CurrencyId.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* CurrencyId.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class CurrencyId
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class CurrencyId extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name CurrencyId has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/CurrencyName.php
Normal file
34
app/Import/Converter/CurrencyName.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* CurrencyName.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class CurrencyName
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class CurrencyName extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name CurrencyName has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/CurrencySymbol.php
Normal file
34
app/Import/Converter/CurrencySymbol.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* CurrencySymbol.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class CurrencySymbol
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class CurrencySymbol extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name CurrencySymbol has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/INGDebetCredit.php
Normal file
34
app/Import/Converter/INGDebetCredit.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* INGDebetCredit.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class INGDebetCredit
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class INGDebetCredit extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name INGDebetCredit has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/OpposingAccountId.php
Normal file
34
app/Import/Converter/OpposingAccountId.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* OpposingAccountId.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class OpposingAccountId
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class OpposingAccountId extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name OpposingAccountId has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/OpposingAccountNumber.php
Normal file
34
app/Import/Converter/OpposingAccountNumber.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* OpposingAccountNumber.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class OpposingAccountNumber
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class OpposingAccountNumber extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name OpposingAccountNumber has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/TagsComma.php
Normal file
34
app/Import/Converter/TagsComma.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* TagsComma.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class TagsComma
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class TagsComma extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name TagsComma has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
34
app/Import/Converter/TagsSpace.php
Normal file
34
app/Import/Converter/TagsSpace.php
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* TagsSpace.php
|
||||||
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
||||||
|
*
|
||||||
|
* This software may be modified and distributed under the terms
|
||||||
|
* of the MIT license. See the LICENSE file for details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Import\Converter;
|
||||||
|
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class TagsSpace
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Import\Converter
|
||||||
|
*/
|
||||||
|
class TagsSpace extends BasicConverter implements ConverterInterface
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
*/
|
||||||
|
public function convert($value)
|
||||||
|
{
|
||||||
|
throw new FireflyException('Importer with name TagsSpace has not yet been configured.');
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user