| 
									
										
										
										
											2018-05-07 19:21:12 +02:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Column.php | 
					
						
							|  |  |  |  * Copyright (c) 2018 thegrumpydictator@gmail.com | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is part of Firefly III. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Firefly III is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Firefly III is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with Firefly III. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | declare(strict_types=1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace FireflyIII\Support\Import\Placeholder; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-05-12 10:46:18 +02:00
										 |  |  |  * Class ColumnValue | 
					
						
							| 
									
										
										
										
											2018-06-06 21:23:00 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-05-12 10:46:18 +02:00
										 |  |  |  * @codeCoverageIgnore | 
					
						
							| 
									
										
										
										
											2018-05-07 19:21:12 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | class ColumnValue | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** @var int */ | 
					
						
							|  |  |  |     private $mappedValue; | 
					
						
							|  |  |  |     /** @var string */ | 
					
						
							|  |  |  |     private $originalRole; | 
					
						
							|  |  |  |     /** @var string */ | 
					
						
							|  |  |  |     private $role; | 
					
						
							|  |  |  |     /** @var string */ | 
					
						
							|  |  |  |     private $value; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * ColumnValue constructor. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function __construct() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->mappedValue = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @return int | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getMappedValue(): int | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->mappedValue; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @param int $mappedValue | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function setMappedValue(int $mappedValue): void | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->mappedValue = $mappedValue; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @return string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getOriginalRole(): string | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->originalRole; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @param string $originalRole | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function setOriginalRole(string $originalRole): void | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->originalRole = $originalRole; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @return string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getRole(): string | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->role; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @param string $role | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function setRole(string $role): void | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->role = $role; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @return string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getValue(): string | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->value; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @param string $value | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function setValue(string $value): void | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->value = $value; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-11 09:51:47 +02:00
										 |  |  | } |