@@ -241,13 +241,13 @@ discard block |
||
| 241 | 241 | * |
| 242 | 242 | * @param array $siteids List of IDs for sites whose entries should be deleted |
| 243 | 243 | */ |
| 244 | - public function cleanup( array $siteids ) |
|
| 244 | + public function cleanup(array $siteids) |
|
| 245 | 245 | { |
| 246 | 246 | $path = 'mshop/customer/manager/submanagers'; |
| 247 | 247 | $default = ['address', 'group', 'lists', 'property']; |
| 248 | 248 | |
| 249 | - foreach( $this->getContext()->getConfig()->get( $path, $default ) as $domain ) { |
|
| 250 | - $this->getObject()->getSubManager( $domain )->cleanup( $siteids ); |
|
| 249 | + foreach ($this->getContext()->getConfig()->get($path, $default) as $domain) { |
|
| 250 | + $this->getObject()->getSubManager($domain)->cleanup($siteids); |
|
| 251 | 251 | } |
| 252 | 252 | } |
| 253 | 253 | |
@@ -257,10 +257,10 @@ discard block |
||
| 257 | 257 | * |
| 258 | 258 | * @param array $ids List of IDs |
| 259 | 259 | */ |
| 260 | - public function deleteItems( array $ids ) |
|
| 260 | + public function deleteItems(array $ids) |
|
| 261 | 261 | { |
| 262 | 262 | $path = 'mshop/customer/manager/fosuser/delete'; |
| 263 | - $this->deleteItemsBase( $ids, $path, false ); |
|
| 263 | + $this->deleteItemsBase($ids, $path, false); |
|
| 264 | 264 | } |
| 265 | 265 | |
| 266 | 266 | |
@@ -270,12 +270,12 @@ discard block |
||
| 270 | 270 | * @param boolean $withsub Return also attributes of sub-managers if true |
| 271 | 271 | * @return array List of attribute items implementing \Aimeos\MW\Criteria\Attribute\Iface |
| 272 | 272 | */ |
| 273 | - public function getSearchAttributes( $withsub = true ) |
|
| 273 | + public function getSearchAttributes($withsub = true) |
|
| 274 | 274 | { |
| 275 | 275 | $path = 'mshop/customer/manager/submanagers'; |
| 276 | 276 | $default = ['address', 'group', 'lists', 'property']; |
| 277 | 277 | |
| 278 | - return $this->getSearchAttributesBase( $this->searchConfig, $path, $default, $withsub ); |
|
| 278 | + return $this->getSearchAttributesBase($this->searchConfig, $path, $default, $withsub); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | |
@@ -286,29 +286,29 @@ discard block |
||
| 286 | 286 | * @param boolean $fetch True if the new ID should be returned in the item |
| 287 | 287 | * @return \Aimeos\MShop\Common\Item\Iface $item Updated item including the generated ID |
| 288 | 288 | */ |
| 289 | - public function saveItem( \Aimeos\MShop\Common\Item\Iface $item, $fetch = true ) |
|
| 289 | + public function saveItem(\Aimeos\MShop\Common\Item\Iface $item, $fetch = true) |
|
| 290 | 290 | { |
| 291 | - self::checkClass( '\\Aimeos\\MShop\\Customer\\Item\\FosUser', $item ); |
|
| 291 | + self::checkClass('\\Aimeos\\MShop\\Customer\\Item\\FosUser', $item); |
|
| 292 | 292 | |
| 293 | - if( !$item->isModified() ) |
|
| 293 | + if (!$item->isModified()) |
|
| 294 | 294 | { |
| 295 | - $item = $this->savePropertyItems( $item, 'customer' ); |
|
| 296 | - $item = $this->saveAddressItems( $item, 'customer' ); |
|
| 297 | - return $this->saveListItems( $item, 'customer' ); |
|
| 295 | + $item = $this->savePropertyItems($item, 'customer'); |
|
| 296 | + $item = $this->saveAddressItems($item, 'customer'); |
|
| 297 | + return $this->saveListItems($item, 'customer'); |
|
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | $context = $this->getContext(); |
| 301 | 301 | $dbm = $context->getDatabaseManager(); |
| 302 | 302 | $dbname = $this->getResourceName(); |
| 303 | - $conn = $dbm->acquire( $dbname ); |
|
| 303 | + $conn = $dbm->acquire($dbname); |
|
| 304 | 304 | |
| 305 | 305 | try |
| 306 | 306 | { |
| 307 | 307 | $id = $item->getId(); |
| 308 | - $date = date( 'Y-m-d H:i:s' ); |
|
| 308 | + $date = date('Y-m-d H:i:s'); |
|
| 309 | 309 | $billingAddress = $item->getPaymentAddress(); |
| 310 | 310 | |
| 311 | - if( $id === null ) |
|
| 311 | + if ($id === null) |
|
| 312 | 312 | { |
| 313 | 313 | /** mshop/customer/manager/fosuser/insert |
| 314 | 314 | * Inserts a new customer record into the database table |
@@ -372,51 +372,51 @@ discard block |
||
| 372 | 372 | $path = 'mshop/customer/manager/fosuser/update'; |
| 373 | 373 | } |
| 374 | 374 | |
| 375 | - $stmt = $this->getCachedStatement( $conn, $path ); |
|
| 376 | - |
|
| 377 | - $stmt->bind( 1, $context->getLocale()->getSiteId(), \Aimeos\MW\DB\Statement\Base::PARAM_INT ); |
|
| 378 | - $stmt->bind( 2, $item->getCode() ); // canonical username |
|
| 379 | - $stmt->bind( 3, $item->getCode() ); // username |
|
| 380 | - $stmt->bind( 4, $billingAddress->getCompany() ); |
|
| 381 | - $stmt->bind( 5, $billingAddress->getVatID() ); |
|
| 382 | - $stmt->bind( 6, $billingAddress->getSalutation() ); |
|
| 383 | - $stmt->bind( 7, $billingAddress->getTitle() ); |
|
| 384 | - $stmt->bind( 8, $billingAddress->getFirstname() ); |
|
| 385 | - $stmt->bind( 9, $billingAddress->getLastname() ); |
|
| 386 | - $stmt->bind( 10, $billingAddress->getAddress1() ); |
|
| 387 | - $stmt->bind( 11, $billingAddress->getAddress2() ); |
|
| 388 | - $stmt->bind( 12, $billingAddress->getAddress3() ); |
|
| 389 | - $stmt->bind( 13, $billingAddress->getPostal() ); |
|
| 390 | - $stmt->bind( 14, $billingAddress->getCity() ); |
|
| 391 | - $stmt->bind( 15, $billingAddress->getState() ); |
|
| 392 | - $stmt->bind( 16, $billingAddress->getCountryId() ); |
|
| 393 | - $stmt->bind( 17, $billingAddress->getLanguageId() ); |
|
| 394 | - $stmt->bind( 18, $billingAddress->getTelephone() ); |
|
| 395 | - $stmt->bind( 19, $billingAddress->getEmail() ); |
|
| 396 | - $stmt->bind( 20, $billingAddress->getEmail() ); |
|
| 397 | - $stmt->bind( 21, $billingAddress->getTelefax() ); |
|
| 398 | - $stmt->bind( 22, $billingAddress->getWebsite() ); |
|
| 399 | - $stmt->bind( 23, $billingAddress->getLongitude(), \Aimeos\MW\DB\Statement\Base::PARAM_FLOAT ); |
|
| 400 | - $stmt->bind( 24, $billingAddress->getLatitude(), \Aimeos\MW\DB\Statement\Base::PARAM_FLOAT ); |
|
| 401 | - $stmt->bind( 25, $item->getBirthday() ); |
|
| 402 | - $stmt->bind( 26, ( $item->getStatus() > 0 ? true : false ), \Aimeos\MW\DB\Statement\Base::PARAM_BOOL ); |
|
| 403 | - $stmt->bind( 27, $item->getDateVerified() ); |
|
| 404 | - $stmt->bind( 28, $item->getPassword() ); |
|
| 405 | - $stmt->bind( 29, $date ); // Modification time |
|
| 406 | - $stmt->bind( 30, $context->getEditor() ); |
|
| 407 | - $stmt->bind( 31, serialize( $item->getRoles() ) ); |
|
| 408 | - $stmt->bind( 32, $item->getSalt() ); |
|
| 409 | - |
|
| 410 | - if( $id !== null ) { |
|
| 411 | - $stmt->bind( 33, $id, \Aimeos\MW\DB\Statement\Base::PARAM_INT ); |
|
| 412 | - $item->setId( $id ); |
|
| 375 | + $stmt = $this->getCachedStatement($conn, $path); |
|
| 376 | + |
|
| 377 | + $stmt->bind(1, $context->getLocale()->getSiteId(), \Aimeos\MW\DB\Statement\Base::PARAM_INT); |
|
| 378 | + $stmt->bind(2, $item->getCode()); // canonical username |
|
| 379 | + $stmt->bind(3, $item->getCode()); // username |
|
| 380 | + $stmt->bind(4, $billingAddress->getCompany()); |
|
| 381 | + $stmt->bind(5, $billingAddress->getVatID()); |
|
| 382 | + $stmt->bind(6, $billingAddress->getSalutation()); |
|
| 383 | + $stmt->bind(7, $billingAddress->getTitle()); |
|
| 384 | + $stmt->bind(8, $billingAddress->getFirstname()); |
|
| 385 | + $stmt->bind(9, $billingAddress->getLastname()); |
|
| 386 | + $stmt->bind(10, $billingAddress->getAddress1()); |
|
| 387 | + $stmt->bind(11, $billingAddress->getAddress2()); |
|
| 388 | + $stmt->bind(12, $billingAddress->getAddress3()); |
|
| 389 | + $stmt->bind(13, $billingAddress->getPostal()); |
|
| 390 | + $stmt->bind(14, $billingAddress->getCity()); |
|
| 391 | + $stmt->bind(15, $billingAddress->getState()); |
|
| 392 | + $stmt->bind(16, $billingAddress->getCountryId()); |
|
| 393 | + $stmt->bind(17, $billingAddress->getLanguageId()); |
|
| 394 | + $stmt->bind(18, $billingAddress->getTelephone()); |
|
| 395 | + $stmt->bind(19, $billingAddress->getEmail()); |
|
| 396 | + $stmt->bind(20, $billingAddress->getEmail()); |
|
| 397 | + $stmt->bind(21, $billingAddress->getTelefax()); |
|
| 398 | + $stmt->bind(22, $billingAddress->getWebsite()); |
|
| 399 | + $stmt->bind(23, $billingAddress->getLongitude(), \Aimeos\MW\DB\Statement\Base::PARAM_FLOAT); |
|
| 400 | + $stmt->bind(24, $billingAddress->getLatitude(), \Aimeos\MW\DB\Statement\Base::PARAM_FLOAT); |
|
| 401 | + $stmt->bind(25, $item->getBirthday()); |
|
| 402 | + $stmt->bind(26, ($item->getStatus() > 0 ? true : false), \Aimeos\MW\DB\Statement\Base::PARAM_BOOL); |
|
| 403 | + $stmt->bind(27, $item->getDateVerified()); |
|
| 404 | + $stmt->bind(28, $item->getPassword()); |
|
| 405 | + $stmt->bind(29, $date); // Modification time |
|
| 406 | + $stmt->bind(30, $context->getEditor()); |
|
| 407 | + $stmt->bind(31, serialize($item->getRoles())); |
|
| 408 | + $stmt->bind(32, $item->getSalt()); |
|
| 409 | + |
|
| 410 | + if ($id !== null) { |
|
| 411 | + $stmt->bind(33, $id, \Aimeos\MW\DB\Statement\Base::PARAM_INT); |
|
| 412 | + $item->setId($id); |
|
| 413 | 413 | } else { |
| 414 | - $stmt->bind( 33, $date ); // Creation time |
|
| 414 | + $stmt->bind(33, $date); // Creation time |
|
| 415 | 415 | } |
| 416 | 416 | |
| 417 | 417 | $stmt->execute()->finish(); |
| 418 | 418 | |
| 419 | - if( $id === null && $fetch === true ) |
|
| 419 | + if ($id === null && $fetch === true) |
|
| 420 | 420 | { |
| 421 | 421 | /** mshop/customer/manager/fosuser/newid |
| 422 | 422 | * Retrieves the ID generated by the database when inserting a new record |
@@ -449,22 +449,22 @@ discard block |
||
| 449 | 449 | * @see mshop/customer/manager/fosuser/count |
| 450 | 450 | */ |
| 451 | 451 | $path = 'mshop/customer/manager/fosuser/newid'; |
| 452 | - $item->setId( $this->newId( $conn, $path ) ); |
|
| 452 | + $item->setId($this->newId($conn, $path)); |
|
| 453 | 453 | } |
| 454 | 454 | |
| 455 | - $dbm->release( $conn, $dbname ); |
|
| 455 | + $dbm->release($conn, $dbname); |
|
| 456 | 456 | } |
| 457 | - catch( \Exception $e ) |
|
| 457 | + catch (\Exception $e) |
|
| 458 | 458 | { |
| 459 | - $dbm->release( $conn, $dbname ); |
|
| 459 | + $dbm->release($conn, $dbname); |
|
| 460 | 460 | throw $e; |
| 461 | 461 | } |
| 462 | 462 | |
| 463 | - $this->addGroups( $item ); |
|
| 463 | + $this->addGroups($item); |
|
| 464 | 464 | |
| 465 | - $item = $this->savePropertyItems( $item, 'customer' ); |
|
| 466 | - $item = $this->saveAddressItems( $item, 'customer' ); |
|
| 467 | - return $this->saveListItems( $item, 'customer' ); |
|
| 465 | + $item = $this->savePropertyItems($item, 'customer'); |
|
| 466 | + $item = $this->saveAddressItems($item, 'customer'); |
|
| 467 | + return $this->saveListItems($item, 'customer'); |
|
| 468 | 468 | } |
| 469 | 469 | |
| 470 | 470 | |
@@ -476,11 +476,11 @@ discard block |
||
| 476 | 476 | * @return array List of items implementing \Aimeos\MShop\Customer\Item\Iface |
| 477 | 477 | * @throws \Aimeos\MShop\Customer\Exception If creating items failed |
| 478 | 478 | */ |
| 479 | - public function searchItems( \Aimeos\MW\Criteria\Iface $search, array $ref = [], &$total = null ) |
|
| 479 | + public function searchItems(\Aimeos\MW\Criteria\Iface $search, array $ref = [], &$total = null) |
|
| 480 | 480 | { |
| 481 | 481 | $dbm = $this->getContext()->getDatabaseManager(); |
| 482 | 482 | $dbname = $this->getResourceName(); |
| 483 | - $conn = $dbm->acquire( $dbname ); |
|
| 483 | + $conn = $dbm->acquire($dbname); |
|
| 484 | 484 | $map = []; |
| 485 | 485 | |
| 486 | 486 | try |
@@ -488,32 +488,32 @@ discard block |
||
| 488 | 488 | $level = \Aimeos\MShop\Locale\Manager\Base::SITE_ALL; |
| 489 | 489 | $cfgPathSearch = 'mshop/customer/manager/fosuser/search'; |
| 490 | 490 | $cfgPathCount = 'mshop/customer/manager/fosuser/count'; |
| 491 | - $required = array( 'customer' ); |
|
| 491 | + $required = array('customer'); |
|
| 492 | 492 | |
| 493 | - $results = $this->searchItemsBase( $conn, $search, $cfgPathSearch, $cfgPathCount, $required, $total, $level ); |
|
| 494 | - while( ( $row = $results->fetch() ) !== false ) { |
|
| 495 | - $map[ $row['customer.id'] ] = $row; |
|
| 493 | + $results = $this->searchItemsBase($conn, $search, $cfgPathSearch, $cfgPathCount, $required, $total, $level); |
|
| 494 | + while (($row = $results->fetch()) !== false) { |
|
| 495 | + $map[$row['customer.id']] = $row; |
|
| 496 | 496 | } |
| 497 | 497 | |
| 498 | - $dbm->release( $conn, $dbname ); |
|
| 498 | + $dbm->release($conn, $dbname); |
|
| 499 | 499 | } |
| 500 | - catch( \Exception $e ) |
|
| 500 | + catch (\Exception $e) |
|
| 501 | 501 | { |
| 502 | - $dbm->release( $conn, $dbname ); |
|
| 502 | + $dbm->release($conn, $dbname); |
|
| 503 | 503 | throw $e; |
| 504 | 504 | } |
| 505 | 505 | |
| 506 | 506 | $addrItems = []; |
| 507 | - if( in_array( 'customer/address', $ref, true ) ) { |
|
| 508 | - $addrItems = $this->getAddressItems( array_keys( $map ), 'customer' ); |
|
| 507 | + if (in_array('customer/address', $ref, true)) { |
|
| 508 | + $addrItems = $this->getAddressItems(array_keys($map), 'customer'); |
|
| 509 | 509 | } |
| 510 | 510 | |
| 511 | 511 | $propItems = []; |
| 512 | - if( in_array( 'customer/property', $ref, true ) ) { |
|
| 513 | - $propItems = $this->getPropertyItems( array_keys( $map ), 'customer' ); |
|
| 512 | + if (in_array('customer/property', $ref, true)) { |
|
| 513 | + $propItems = $this->getPropertyItems(array_keys($map), 'customer'); |
|
| 514 | 514 | } |
| 515 | 515 | |
| 516 | - return $this->buildItems( $map, $ref, 'customer', $addrItems, $propItems ); |
|
| 516 | + return $this->buildItems($map, $ref, 'customer', $addrItems, $propItems); |
|
| 517 | 517 | } |
| 518 | 518 | |
| 519 | 519 | |
@@ -524,9 +524,9 @@ discard block |
||
| 524 | 524 | * @param string|null $name Name of the implementation, will be from configuration (or Default) if null |
| 525 | 525 | * @return mixed Manager for different extensions, e.g stock, tags, locations, etc. |
| 526 | 526 | */ |
| 527 | - public function getSubManager( $manager, $name = null ) |
|
| 527 | + public function getSubManager($manager, $name = null) |
|
| 528 | 528 | { |
| 529 | - return $this->getSubManagerBase( 'customer', $manager, ( $name === null ? 'FosUser' : $name ) ); |
|
| 529 | + return $this->getSubManagerBase('customer', $manager, ($name === null ? 'FosUser' : $name)); |
|
| 530 | 530 | } |
| 531 | 531 | |
| 532 | 532 | |
@@ -540,15 +540,15 @@ discard block |
||
| 540 | 540 | * @param \Aimeos\MShop\Common\Item\Property\Iface[] $propItems List of property items |
| 541 | 541 | * @return \Aimeos\MShop\Customer\Item\Iface New customer item |
| 542 | 542 | */ |
| 543 | - protected function createItemBase( array $values = [], array $listItems = [], array $refItems = [], |
|
| 544 | - array $addrItems = [], array $propItems = [] ) |
|
| 543 | + protected function createItemBase(array $values = [], array $listItems = [], array $refItems = [], |
|
| 544 | + array $addrItems = [], array $propItems = []) |
|
| 545 | 545 | { |
| 546 | - if( isset( $values['roles'] ) ) { |
|
| 547 | - $values['roles'] = unserialize( $values['roles'] ); |
|
| 546 | + if (isset($values['roles'])) { |
|
| 547 | + $values['roles'] = unserialize($values['roles']); |
|
| 548 | 548 | } |
| 549 | 549 | |
| 550 | 550 | $helper = $this->getPasswordHelper(); |
| 551 | - $address = new \Aimeos\MShop\Common\Item\Address\Simple( 'customer.', $values ); |
|
| 551 | + $address = new \Aimeos\MShop\Common\Item\Address\Simple('customer.', $values); |
|
| 552 | 552 | |
| 553 | 553 | return new \Aimeos\MShop\Customer\Item\FosUser( |
| 554 | 554 | $address, $values, $listItems, $refItems, $addrItems, $propItems, $helper |
@@ -35,11 +35,11 @@ discard block |
||
| 35 | 35 | * @param \Aimeos\MShop\Common\Item\Helper\Password\Iface|null $helper Password encryption helper object |
| 36 | 36 | * @param string|null $salt Password salt |
| 37 | 37 | */ |
| 38 | - public function __construct( \Aimeos\MShop\Common\Item\Address\Iface $address, array $values = [], |
|
| 38 | + public function __construct(\Aimeos\MShop\Common\Item\Address\Iface $address, array $values = [], |
|
| 39 | 39 | array $listItems = [], array $refItems = [], array $addrItems = [], array $propItems = [], |
| 40 | - \Aimeos\MShop\Common\Item\Helper\Password\Iface $helper = null, $salt = null ) |
|
| 40 | + \Aimeos\MShop\Common\Item\Helper\Password\Iface $helper = null, $salt = null) |
|
| 41 | 41 | { |
| 42 | - parent::__construct( $address, $values, $listItems, $refItems, $addrItems, $propItems, $helper, $salt ); |
|
| 42 | + parent::__construct($address, $values, $listItems, $refItems, $addrItems, $propItems, $helper, $salt); |
|
| 43 | 43 | |
| 44 | 44 | $this->values = $values; |
| 45 | 45 | $this->helper = $helper; |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | */ |
| 55 | 55 | public function getPassword() |
| 56 | 56 | { |
| 57 | - if( isset( $this->values['customer.password'] ) ) { |
|
| 57 | + if (isset($this->values['customer.password'])) { |
|
| 58 | 58 | return (string) $this->values['customer.password']; |
| 59 | 59 | } |
| 60 | 60 | |
@@ -68,12 +68,12 @@ discard block |
||
| 68 | 68 | * @param string $value Password of the customer item |
| 69 | 69 | * @return \Aimeos\MShop\Customer\Item\Iface Customer item for chaining method calls |
| 70 | 70 | */ |
| 71 | - public function setPassword( $value ) |
|
| 71 | + public function setPassword($value) |
|
| 72 | 72 | { |
| 73 | - if( (string) $value !== $this->getPassword() ) |
|
| 73 | + if ((string) $value !== $this->getPassword()) |
|
| 74 | 74 | { |
| 75 | - if( $this->helper !== null ) { |
|
| 76 | - $value = $this->helper->encode( $value, $this->getSalt() ); |
|
| 75 | + if ($this->helper !== null) { |
|
| 76 | + $value = $this->helper->encode($value, $this->getSalt()); |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | $this->values['customer.password'] = (string) $value; |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | */ |
| 92 | 92 | public function getRoles() |
| 93 | 93 | { |
| 94 | - if( isset( $this->values['roles'] ) ) { |
|
| 94 | + if (isset($this->values['roles'])) { |
|
| 95 | 95 | return (array) $this->values['roles']; |
| 96 | 96 | } |
| 97 | 97 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | * |
| 105 | 105 | * @param array $roles List of Symfony roles |
| 106 | 106 | */ |
| 107 | - public function setRoles( array $roles ) |
|
| 107 | + public function setRoles(array $roles) |
|
| 108 | 108 | { |
| 109 | 109 | $this->values['roles'] = $roles; |
| 110 | 110 | $this->setModified(); |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | */ |
| 121 | 121 | public function getSalt() |
| 122 | 122 | { |
| 123 | - if( isset( $this->values['salt'] ) ) { |
|
| 123 | + if (isset($this->values['salt'])) { |
|
| 124 | 124 | return $this->values['salt']; |
| 125 | 125 | } |
| 126 | 126 | |
@@ -133,9 +133,9 @@ discard block |
||
| 133 | 133 | * |
| 134 | 134 | * @param string $value Password salt |
| 135 | 135 | */ |
| 136 | - public function setSalt( $value ) |
|
| 136 | + public function setSalt($value) |
|
| 137 | 137 | { |
| 138 | - if( (string) $value !== $this->getSalt() ) |
|
| 138 | + if ((string) $value !== $this->getSalt()) |
|
| 139 | 139 | { |
| 140 | 140 | $this->values['salt'] = (string) $value; |
| 141 | 141 | $this->setModified(); |
@@ -47,72 +47,72 @@ |
||
| 47 | 47 | 'customer.mtime'=> '2010-01-05 00:00:05', |
| 48 | 48 | 'customer.ctime'=> '2010-01-01 00:00:00', |
| 49 | 49 | 'customer.editor' => 'unitTestUser', |
| 50 | - 'roles' => array( 'ROLE_ADMIN' ), |
|
| 50 | + 'roles' => array('ROLE_ADMIN'), |
|
| 51 | 51 | 'salt' => 'test', |
| 52 | 52 | ); |
| 53 | 53 | |
| 54 | - $this->address = new \Aimeos\MShop\Common\Item\Address\Standard( 'customer.', $values ); |
|
| 55 | - $this->object = new \Aimeos\MShop\Customer\Item\FosUser( $this->address, $values ); |
|
| 54 | + $this->address = new \Aimeos\MShop\Common\Item\Address\Standard('customer.', $values); |
|
| 55 | + $this->object = new \Aimeos\MShop\Customer\Item\FosUser($this->address, $values); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | protected function tearDown() |
| 59 | 59 | { |
| 60 | - unset( $this->object ); |
|
| 60 | + unset($this->object); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | public function testGetPassword() |
| 64 | 64 | { |
| 65 | - $this->assertEquals( 'testpwd', $this->object->getPassword() ); |
|
| 65 | + $this->assertEquals('testpwd', $this->object->getPassword()); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | public function testSetPassword() |
| 69 | 69 | { |
| 70 | - $this->object->setPassword( 'new' ); |
|
| 71 | - $this->assertTrue( $this->object->isModified() ); |
|
| 72 | - $this->assertEquals( 'new', $this->object->getPassword() ); |
|
| 70 | + $this->object->setPassword('new'); |
|
| 71 | + $this->assertTrue($this->object->isModified()); |
|
| 72 | + $this->assertEquals('new', $this->object->getPassword()); |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | public function testSetPasswordGenerated() |
| 76 | 76 | { |
| 77 | - $helper = new \Aimeos\MShop\Common\Item\Helper\Password\Standard( array( 'format' => '%1$s{%2$s}' ) ); |
|
| 78 | - $object = new \Aimeos\MShop\Customer\Item\FosUser( $this->address, [], [], [], [], [], $helper ); |
|
| 77 | + $helper = new \Aimeos\MShop\Common\Item\Helper\Password\Standard(array('format' => '%1$s{%2$s}')); |
|
| 78 | + $object = new \Aimeos\MShop\Customer\Item\FosUser($this->address, [], [], [], [], [], $helper); |
|
| 79 | 79 | |
| 80 | - $object->setPassword( 'newpwd' ); |
|
| 81 | - $this->assertEquals( sha1( 'newpwd{' . $object->getSalt() . '}' ), $object->getPassword() ); |
|
| 80 | + $object->setPassword('newpwd'); |
|
| 81 | + $this->assertEquals(sha1('newpwd{' . $object->getSalt() . '}'), $object->getPassword()); |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | public function testGetRoles() |
| 85 | 85 | { |
| 86 | - $this->assertEquals( array( 'ROLE_ADMIN' ), $this->object->getRoles() ); |
|
| 86 | + $this->assertEquals(array('ROLE_ADMIN'), $this->object->getRoles()); |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | public function testSetRoles() |
| 90 | 90 | { |
| 91 | - $this->object->setRoles( array( 'ROLE_USER' ) ); |
|
| 92 | - $this->assertTrue( $this->object->isModified() ); |
|
| 93 | - $this->assertEquals( array( 'ROLE_USER' ), $this->object->getRoles() ); |
|
| 91 | + $this->object->setRoles(array('ROLE_USER')); |
|
| 92 | + $this->assertTrue($this->object->isModified()); |
|
| 93 | + $this->assertEquals(array('ROLE_USER'), $this->object->getRoles()); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | public function testGetSalt() |
| 97 | 97 | { |
| 98 | - $this->assertEquals( 'test', $this->object->getSalt() ); |
|
| 98 | + $this->assertEquals('test', $this->object->getSalt()); |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | public function testGetSaltGenerated() |
| 102 | 102 | { |
| 103 | - $object = new \Aimeos\MShop\Customer\Item\FosUser( $this->address, [] ); |
|
| 104 | - $this->assertEquals( '', $object->getSalt() ); |
|
| 103 | + $object = new \Aimeos\MShop\Customer\Item\FosUser($this->address, []); |
|
| 104 | + $this->assertEquals('', $object->getSalt()); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | public function testSetSalt() |
| 108 | 108 | { |
| 109 | - $this->object->setSalt( 'new' ); |
|
| 110 | - $this->assertTrue( $this->object->isModified() ); |
|
| 111 | - $this->assertEquals( 'new', $this->object->getSalt() ); |
|
| 109 | + $this->object->setSalt('new'); |
|
| 110 | + $this->assertTrue($this->object->isModified()); |
|
| 111 | + $this->assertEquals('new', $this->object->getSalt()); |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | public function testIsModified() |
| 115 | 115 | { |
| 116 | - $this->assertFalse( $this->object->isModified() ); |
|
| 116 | + $this->assertFalse($this->object->isModified()); |
|
| 117 | 117 | } |
| 118 | 118 | } |