@@ -42,12 +42,12 @@ discard block |
||
| 42 | 42 | * @param array $mapping Associative list of field position in CSV as key and domain item key as value |
| 43 | 43 | * @param \Aimeos\Controller\Common\Product\Import\Csv\Processor\Iface $object Decorated processor |
| 44 | 44 | */ |
| 45 | - public function __construct( \Aimeos\MShop\Context\Item\Iface $context, array $mapping, |
|
| 46 | - \Aimeos\Controller\Common\Product\Import\Csv\Processor\Iface $object = null ) |
|
| 45 | + public function __construct(\Aimeos\MShop\Context\Item\Iface $context, array $mapping, |
|
| 46 | + \Aimeos\Controller\Common\Product\Import\Csv\Processor\Iface $object = null) |
|
| 47 | 47 | { |
| 48 | - parent::__construct( $context, $mapping, $object ); |
|
| 48 | + parent::__construct($context, $mapping, $object); |
|
| 49 | 49 | |
| 50 | - $this->cache = $this->getCache( 'stocktype' ); |
|
| 50 | + $this->cache = $this->getCache('stocktype'); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | |
@@ -58,53 +58,53 @@ discard block |
||
| 58 | 58 | * @param array $data List of CSV fields with position as key and data as value |
| 59 | 59 | * @return array List of data which hasn't been imported |
| 60 | 60 | */ |
| 61 | - public function process( \Aimeos\MShop\Product\Item\Iface $product, array $data ) |
|
| 61 | + public function process(\Aimeos\MShop\Product\Item\Iface $product, array $data) |
|
| 62 | 62 | { |
| 63 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'stock' ); |
|
| 63 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'stock'); |
|
| 64 | 64 | $manager->begin(); |
| 65 | 65 | |
| 66 | 66 | try |
| 67 | 67 | { |
| 68 | - $map = $this->getMappedChunk( $data ); |
|
| 69 | - $items = $this->getStockItems( $product->getCode() ); |
|
| 68 | + $map = $this->getMappedChunk($data); |
|
| 69 | + $items = $this->getStockItems($product->getCode()); |
|
| 70 | 70 | |
| 71 | - foreach( $map as $pos => $list ) |
|
| 71 | + foreach ($map as $pos => $list) |
|
| 72 | 72 | { |
| 73 | - if( !array_key_exists( 'stock.stocklevel', $list ) ) { |
|
| 73 | + if (!array_key_exists('stock.stocklevel', $list)) { |
|
| 74 | 74 | continue; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - $stockType = ( isset( $list['stock.type'] ) ? $list['stock.type'] : 'default' ); |
|
| 77 | + $stockType = (isset($list['stock.type']) ? $list['stock.type'] : 'default'); |
|
| 78 | 78 | |
| 79 | - if( !isset( $list['stock.typeid'] ) ) { |
|
| 80 | - $list['stock.typeid'] = $this->cache->get( $stockType ); |
|
| 79 | + if (!isset($list['stock.typeid'])) { |
|
| 80 | + $list['stock.typeid'] = $this->cache->get($stockType); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - if( isset( $list['stock.dateback'] ) && $list['stock.dateback'] === '' ) { |
|
| 83 | + if (isset($list['stock.dateback']) && $list['stock.dateback'] === '') { |
|
| 84 | 84 | $list['stock.dateback'] = null; |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - if( $list['stock.stocklevel'] === '' ) { |
|
| 87 | + if ($list['stock.stocklevel'] === '') { |
|
| 88 | 88 | $list['stock.stocklevel'] = null; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | $list['stock.productcode'] = $product->getCode(); |
| 92 | 92 | |
| 93 | - if( ( $item = array_pop( $items ) ) === null ) { |
|
| 93 | + if (($item = array_pop($items)) === null) { |
|
| 94 | 94 | $item = $manager->createItem(); |
| 95 | 95 | } |
| 96 | 96 | |
| 97 | - $item->fromArray( $list ); |
|
| 98 | - $manager->saveItem( $item ); |
|
| 97 | + $item->fromArray($list); |
|
| 98 | + $manager->saveItem($item); |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - $manager->deleteItems( array_keys( $items ) ); |
|
| 101 | + $manager->deleteItems(array_keys($items)); |
|
| 102 | 102 | |
| 103 | - $remaining = $this->getObject()->process( $product, $data ); |
|
| 103 | + $remaining = $this->getObject()->process($product, $data); |
|
| 104 | 104 | |
| 105 | 105 | $manager->commit(); |
| 106 | 106 | } |
| 107 | - catch( \Exception $e ) |
|
| 107 | + catch (\Exception $e) |
|
| 108 | 108 | { |
| 109 | 109 | $manager->rollback(); |
| 110 | 110 | throw $e; |
@@ -120,13 +120,13 @@ discard block |
||
| 120 | 120 | * @param string $code Unique product code |
| 121 | 121 | * @return \Aimeos\MShop\Stock\Item\Iface[] Associative list of stock items |
| 122 | 122 | */ |
| 123 | - protected function getStockItems( $code ) |
|
| 123 | + protected function getStockItems($code) |
|
| 124 | 124 | { |
| 125 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'stock' ); |
|
| 125 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'stock'); |
|
| 126 | 126 | |
| 127 | 127 | $search = $manager->createSearch(); |
| 128 | - $search->setConditions( $search->compare( '==', 'stock.productcoce', $code ) ); |
|
| 128 | + $search->setConditions($search->compare('==', 'stock.productcoce', $code)); |
|
| 129 | 129 | |
| 130 | - return $manager->searchItems( $search ); |
|
| 130 | + return $manager->searchItems($search); |
|
| 131 | 131 | } |
| 132 | 132 | } |
@@ -40,16 +40,16 @@ discard block |
||
| 40 | 40 | * |
| 41 | 41 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object |
| 42 | 42 | */ |
| 43 | - public function __construct( \Aimeos\MShop\Context\Item\Iface $context ) |
|
| 43 | + public function __construct(\Aimeos\MShop\Context\Item\Iface $context) |
|
| 44 | 44 | { |
| 45 | - parent::__construct( $context ); |
|
| 45 | + parent::__construct($context); |
|
| 46 | 46 | |
| 47 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'stock/type' ); |
|
| 47 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'stock/type'); |
|
| 48 | 48 | $search = $manager->createSearch(); |
| 49 | - $search->setSlice( 0, 0x7fffffff ); |
|
| 49 | + $search->setSlice(0, 0x7fffffff); |
|
| 50 | 50 | |
| 51 | - foreach( $manager->searchItems( $search ) as $id => $item ) { |
|
| 52 | - $this->types[ $item->getCode() ] = $id; |
|
| 51 | + foreach ($manager->searchItems($search) as $id => $item) { |
|
| 52 | + $this->types[$item->getCode()] = $id; |
|
| 53 | 53 | } |
| 54 | 54 | } |
| 55 | 55 | |
@@ -61,9 +61,9 @@ discard block |
||
| 61 | 61 | * @param string|null $type Attribute type |
| 62 | 62 | * @return string|null Stock type ID or null if not found |
| 63 | 63 | */ |
| 64 | - public function get( $code, $type = null ) |
|
| 64 | + public function get($code, $type = null) |
|
| 65 | 65 | { |
| 66 | - if( isset( $this->types[$code] ) ) { |
|
| 66 | + if (isset($this->types[$code])) { |
|
| 67 | 67 | return $this->types[$code]; |
| 68 | 68 | } |
| 69 | 69 | } |
@@ -74,8 +74,8 @@ discard block |
||
| 74 | 74 | * |
| 75 | 75 | * @param \Aimeos\MShop\Common\Item\Iface $item Stock type object |
| 76 | 76 | */ |
| 77 | - public function set( \Aimeos\MShop\Common\Item\Iface $item ) |
|
| 77 | + public function set(\Aimeos\MShop\Common\Item\Iface $item) |
|
| 78 | 78 | { |
| 79 | - $this->types[ $item->getCode() ] = $item->getId(); |
|
| 79 | + $this->types[$item->getCode()] = $item->getId(); |
|
| 80 | 80 | } |
| 81 | 81 | } |
| 82 | 82 | \ No newline at end of file |
@@ -17,16 +17,16 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | protected function setUp() |
| 19 | 19 | { |
| 20 | - \Aimeos\MShop\Factory::setCache( true ); |
|
| 20 | + \Aimeos\MShop\Factory::setCache(true); |
|
| 21 | 21 | |
| 22 | 22 | $this->context = \TestHelperCntl::getContext(); |
| 23 | - $this->endpoint = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Done( $this->context, array() ); |
|
| 23 | + $this->endpoint = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Done($this->context, array()); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | |
| 27 | 27 | protected function tearDown() |
| 28 | 28 | { |
| 29 | - \Aimeos\MShop\Factory::setCache( false ); |
|
| 29 | + \Aimeos\MShop\Factory::setCache(false); |
|
| 30 | 30 | \Aimeos\MShop\Factory::clear(); |
| 31 | 31 | } |
| 32 | 32 | |
@@ -43,21 +43,21 @@ discard block |
||
| 43 | 43 | 1 => '2000-01-01 00:00:00', |
| 44 | 44 | ); |
| 45 | 45 | |
| 46 | - $product = $this->create( 'job_csv_test' ); |
|
| 46 | + $product = $this->create('job_csv_test'); |
|
| 47 | 47 | |
| 48 | - $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard( $this->context, $mapping, $this->endpoint ); |
|
| 49 | - $object->process( $product, $data ); |
|
| 48 | + $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard($this->context, $mapping, $this->endpoint); |
|
| 49 | + $object->process($product, $data); |
|
| 50 | 50 | |
| 51 | - $items = $this->getStockItems( $product->getCode() ); |
|
| 52 | - $this->delete( $product ); |
|
| 51 | + $items = $this->getStockItems($product->getCode()); |
|
| 52 | + $this->delete($product); |
|
| 53 | 53 | |
| 54 | 54 | |
| 55 | - $this->assertEquals( 1, count( $items ) ); |
|
| 55 | + $this->assertEquals(1, count($items)); |
|
| 56 | 56 | |
| 57 | - foreach( $items as $item ) |
|
| 57 | + foreach ($items as $item) |
|
| 58 | 58 | { |
| 59 | - $this->assertEquals( 100, $item->getStocklevel() ); |
|
| 60 | - $this->assertEquals( '2000-01-01 00:00:00', $item->getDateBack() ); |
|
| 59 | + $this->assertEquals(100, $item->getStocklevel()); |
|
| 60 | + $this->assertEquals('2000-01-01 00:00:00', $item->getDateBack()); |
|
| 61 | 61 | } |
| 62 | 62 | } |
| 63 | 63 | |
@@ -78,19 +78,19 @@ discard block |
||
| 78 | 78 | 3 => '200', |
| 79 | 79 | ); |
| 80 | 80 | |
| 81 | - $product = $this->create( 'job_csv_test' ); |
|
| 81 | + $product = $this->create('job_csv_test'); |
|
| 82 | 82 | |
| 83 | - $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard( $this->context, $mapping, $this->endpoint ); |
|
| 84 | - $object->process( $product, $data ); |
|
| 83 | + $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard($this->context, $mapping, $this->endpoint); |
|
| 84 | + $object->process($product, $data); |
|
| 85 | 85 | |
| 86 | - $items = $this->getStockItems( $product->getCode() ); |
|
| 87 | - $this->delete( $product ); |
|
| 86 | + $items = $this->getStockItems($product->getCode()); |
|
| 87 | + $this->delete($product); |
|
| 88 | 88 | |
| 89 | 89 | |
| 90 | - $this->assertEquals( 2, count( $items ) ); |
|
| 90 | + $this->assertEquals(2, count($items)); |
|
| 91 | 91 | |
| 92 | - foreach( $items as $item ) { |
|
| 93 | - $this->assertEquals( 200, $item->getStocklevel() ); |
|
| 92 | + foreach ($items as $item) { |
|
| 93 | + $this->assertEquals(200, $item->getStocklevel()); |
|
| 94 | 94 | } |
| 95 | 95 | } |
| 96 | 96 | |
@@ -109,21 +109,21 @@ discard block |
||
| 109 | 109 | 0 => '20', |
| 110 | 110 | ); |
| 111 | 111 | |
| 112 | - $product = $this->create( 'job_csv_test' ); |
|
| 112 | + $product = $this->create('job_csv_test'); |
|
| 113 | 113 | |
| 114 | - $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard( $this->context, $mapping, $this->endpoint ); |
|
| 114 | + $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard($this->context, $mapping, $this->endpoint); |
|
| 115 | 115 | |
| 116 | - $object->process( $product, $data ); |
|
| 117 | - $object->process( $product, $dataUpdate ); |
|
| 116 | + $object->process($product, $data); |
|
| 117 | + $object->process($product, $dataUpdate); |
|
| 118 | 118 | |
| 119 | - $items = $this->getStockItems( $product->getCode() ); |
|
| 120 | - $this->delete( $product ); |
|
| 119 | + $items = $this->getStockItems($product->getCode()); |
|
| 120 | + $this->delete($product); |
|
| 121 | 121 | |
| 122 | 122 | |
| 123 | - $item = reset( $items ); |
|
| 123 | + $item = reset($items); |
|
| 124 | 124 | |
| 125 | - $this->assertEquals( 1, count( $items ) ); |
|
| 126 | - $this->assertEquals( 20, $item->getStocklevel() ); |
|
| 125 | + $this->assertEquals(1, count($items)); |
|
| 126 | + $this->assertEquals(20, $item->getStocklevel()); |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | |
@@ -137,19 +137,19 @@ discard block |
||
| 137 | 137 | 0 => 50, |
| 138 | 138 | ); |
| 139 | 139 | |
| 140 | - $product = $this->create( 'job_csv_test' ); |
|
| 140 | + $product = $this->create('job_csv_test'); |
|
| 141 | 141 | |
| 142 | - $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard( $this->context, $mapping, $this->endpoint ); |
|
| 143 | - $object->process( $product, $data ); |
|
| 142 | + $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard($this->context, $mapping, $this->endpoint); |
|
| 143 | + $object->process($product, $data); |
|
| 144 | 144 | |
| 145 | - $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard( $this->context, array(), $this->endpoint ); |
|
| 146 | - $object->process( $product, array() ); |
|
| 145 | + $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard($this->context, array(), $this->endpoint); |
|
| 146 | + $object->process($product, array()); |
|
| 147 | 147 | |
| 148 | - $items = $this->getStockItems( $product->getCode() ); |
|
| 149 | - $this->delete( $product ); |
|
| 148 | + $items = $this->getStockItems($product->getCode()); |
|
| 149 | + $this->delete($product); |
|
| 150 | 150 | |
| 151 | 151 | |
| 152 | - $this->assertEquals( 0, count( $items ) ); |
|
| 152 | + $this->assertEquals(0, count($items)); |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | |
@@ -167,20 +167,20 @@ discard block |
||
| 167 | 167 | 2 => '', |
| 168 | 168 | ); |
| 169 | 169 | |
| 170 | - $product = $this->create( 'job_csv_test' ); |
|
| 170 | + $product = $this->create('job_csv_test'); |
|
| 171 | 171 | |
| 172 | - $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard( $this->context, $mapping, $this->endpoint ); |
|
| 173 | - $object->process( $product, $data ); |
|
| 172 | + $object = new \Aimeos\Controller\Common\Product\Import\Csv\Processor\Stock\Standard($this->context, $mapping, $this->endpoint); |
|
| 173 | + $object->process($product, $data); |
|
| 174 | 174 | |
| 175 | - $items = $this->getStockItems( $product->getCode() ); |
|
| 176 | - $this->delete( $product ); |
|
| 175 | + $items = $this->getStockItems($product->getCode()); |
|
| 176 | + $this->delete($product); |
|
| 177 | 177 | |
| 178 | - $this->assertEquals( 1, count( $items ) ); |
|
| 178 | + $this->assertEquals(1, count($items)); |
|
| 179 | 179 | |
| 180 | - foreach( $items as $item ) |
|
| 180 | + foreach ($items as $item) |
|
| 181 | 181 | { |
| 182 | - $this->assertEquals( null, $item->getStocklevel() ); |
|
| 183 | - $this->assertEquals( null, $item->getDateBack() ); |
|
| 182 | + $this->assertEquals(null, $item->getStocklevel()); |
|
| 183 | + $this->assertEquals(null, $item->getDateBack()); |
|
| 184 | 184 | } |
| 185 | 185 | } |
| 186 | 186 | |
@@ -188,43 +188,43 @@ discard block |
||
| 188 | 188 | /** |
| 189 | 189 | * @param string $code |
| 190 | 190 | */ |
| 191 | - protected function create( $code ) |
|
| 191 | + protected function create($code) |
|
| 192 | 192 | { |
| 193 | - $manager = \Aimeos\MShop\Product\Manager\Factory::createManager( $this->context ); |
|
| 194 | - $typeManager = $manager->getSubManager( 'type' ); |
|
| 193 | + $manager = \Aimeos\MShop\Product\Manager\Factory::createManager($this->context); |
|
| 194 | + $typeManager = $manager->getSubManager('type'); |
|
| 195 | 195 | |
| 196 | 196 | $typeSearch = $typeManager->createSearch(); |
| 197 | - $typeSearch->setConditions( $typeSearch->compare( '==', 'type.code', 'default' ) ); |
|
| 198 | - $typeResult = $typeManager->searchItems( $typeSearch ); |
|
| 197 | + $typeSearch->setConditions($typeSearch->compare('==', 'type.code', 'default')); |
|
| 198 | + $typeResult = $typeManager->searchItems($typeSearch); |
|
| 199 | 199 | |
| 200 | - if( ( $typeItem = reset( $typeResult ) ) === false ) { |
|
| 201 | - throw new \RuntimeException( 'No product type "default" found' ); |
|
| 200 | + if (($typeItem = reset($typeResult)) === false) { |
|
| 201 | + throw new \RuntimeException('No product type "default" found'); |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | $item = $manager->createItem(); |
| 205 | - $item->setTypeid( $typeItem->getId() ); |
|
| 206 | - $item->setCode( $code ); |
|
| 205 | + $item->setTypeid($typeItem->getId()); |
|
| 206 | + $item->setCode($code); |
|
| 207 | 207 | |
| 208 | - $manager->saveItem( $item ); |
|
| 208 | + $manager->saveItem($item); |
|
| 209 | 209 | |
| 210 | 210 | return $item; |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | 213 | |
| 214 | - protected function delete( \Aimeos\MShop\Product\Item\Iface $product ) |
|
| 214 | + protected function delete(\Aimeos\MShop\Product\Item\Iface $product) |
|
| 215 | 215 | { |
| 216 | - $manager = \Aimeos\MShop\Product\Manager\Factory::createManager( $this->context ); |
|
| 217 | - $manager->deleteItem( $product->getId() ); |
|
| 216 | + $manager = \Aimeos\MShop\Product\Manager\Factory::createManager($this->context); |
|
| 217 | + $manager->deleteItem($product->getId()); |
|
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | |
| 221 | - protected function getStockItems( $code ) |
|
| 221 | + protected function getStockItems($code) |
|
| 222 | 222 | { |
| 223 | - $manager = \Aimeos\MShop\Factory::createManager( $this->context, 'stock' ); |
|
| 223 | + $manager = \Aimeos\MShop\Factory::createManager($this->context, 'stock'); |
|
| 224 | 224 | |
| 225 | 225 | $search = $manager->createSearch(); |
| 226 | - $search->setConditions( $search->compare( '==', 'stock.prodcode', $code ) ); |
|
| 226 | + $search->setConditions($search->compare('==', 'stock.prodcode', $code)); |
|
| 227 | 227 | |
| 228 | - return $manager->searchItems( $search ); |
|
| 228 | + return $manager->searchItems($search); |
|
| 229 | 229 | } |
| 230 | 230 | } |
| 231 | 231 | \ No newline at end of file |
@@ -16,43 +16,43 @@ |
||
| 16 | 16 | |
| 17 | 17 | protected function setUp() |
| 18 | 18 | { |
| 19 | - \Aimeos\MShop\Factory::setCache( true ); |
|
| 19 | + \Aimeos\MShop\Factory::setCache(true); |
|
| 20 | 20 | |
| 21 | 21 | $context = \TestHelperCntl::getContext(); |
| 22 | - $this->object = new \Aimeos\Controller\Common\Product\Import\Csv\Cache\Stocktype\Standard( $context ); |
|
| 22 | + $this->object = new \Aimeos\Controller\Common\Product\Import\Csv\Cache\Stocktype\Standard($context); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | |
| 26 | 26 | protected function tearDown() |
| 27 | 27 | { |
| 28 | - \Aimeos\MShop\Factory::setCache( false ); |
|
| 28 | + \Aimeos\MShop\Factory::setCache(false); |
|
| 29 | 29 | \Aimeos\MShop\Factory::clear(); |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | |
| 33 | 33 | public function testGet() |
| 34 | 34 | { |
| 35 | - $result = $this->object->get( 'default' ); |
|
| 35 | + $result = $this->object->get('default'); |
|
| 36 | 36 | |
| 37 | - $this->assertNotEquals( null, $result ); |
|
| 37 | + $this->assertNotEquals(null, $result); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | |
| 41 | 41 | public function testGetUnknown() |
| 42 | 42 | { |
| 43 | - $this->assertEquals( null, $this->object->get( 'cache-test' ) ); |
|
| 43 | + $this->assertEquals(null, $this->object->get('cache-test')); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | |
| 47 | 47 | public function testSet() |
| 48 | 48 | { |
| 49 | - $item = \Aimeos\MShop\Factory::createManager( \TestHelperCntl::getContext(), 'stock/type' )->createItem(); |
|
| 50 | - $item->setCode( 'cache-test' ); |
|
| 51 | - $item->setId( 1 ); |
|
| 49 | + $item = \Aimeos\MShop\Factory::createManager(\TestHelperCntl::getContext(), 'stock/type')->createItem(); |
|
| 50 | + $item->setCode('cache-test'); |
|
| 51 | + $item->setId(1); |
|
| 52 | 52 | |
| 53 | - $this->object->set( $item ); |
|
| 54 | - $id = $this->object->get( 'cache-test' ); |
|
| 53 | + $this->object->set($item); |
|
| 54 | + $id = $this->object->get('cache-test'); |
|
| 55 | 55 | |
| 56 | - $this->assertEquals( $item->getId(), $id ); |
|
| 56 | + $this->assertEquals($item->getId(), $id); |
|
| 57 | 57 | } |
| 58 | 58 | } |
| 59 | 59 | \ No newline at end of file |