2016-01-20 14:23:39 -06:00
|
|
|
<?php
|
2016-02-05 05:08:25 -06:00
|
|
|
declare(strict_types = 1);
|
2016-01-20 14:23:39 -06:00
|
|
|
/**
|
|
|
|
* Specifix.php
|
|
|
|
* Copyright (C) 2016 Sander Dorigo
|
|
|
|
*
|
|
|
|
* This software may be modified and distributed under the terms
|
|
|
|
* of the MIT license. See the LICENSE file for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace FireflyIII\Helpers\Csv\Specifix;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Specifix
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Helpers\Csv\Specifix
|
|
|
|
*/
|
|
|
|
class Specifix
|
|
|
|
{
|
|
|
|
|
|
|
|
/** @var int */
|
|
|
|
protected $processorType;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getProcessorType()
|
|
|
|
{
|
|
|
|
return $this->processorType;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-02-05 02:25:15 -06:00
|
|
|
* @param int $processorType
|
2016-01-20 14:23:39 -06:00
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
2016-02-05 02:25:15 -06:00
|
|
|
public function setProcessorType(int $processorType)
|
2016-01-20 14:23:39 -06:00
|
|
|
{
|
|
|
|
$this->processorType = $processorType;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-28 14:50:20 -06:00
|
|
|
}
|