1 <?php
2 /* --------------------------------------------------------------
3 CustomerAccountInputValidatorInterface.inc.php 2015-02-18 gm
4 Gambio GmbH
5 http://www.gambio.de
6 Copyright (c) 2015 Gambio GmbH
7 Released under the GNU General Public License (Version 2)
8 [http://www.gnu.org/licenses/gpl-2.0.html]
9 --------------------------------------------------------------
10 */
11
12 /**
13 * Interface CustomerAccountInputValidatorInterface
14 *
15 * @category System
16 * @package Customer
17 * @subpackage Interfaces
18 */
19 interface CustomerAccountInputValidatorInterface
20 {
21 /**
22 * Validates the customer account input with a given array.
23 *
24 * @param array $inputArray Input data.
25 * @param CustomerInterface $customer Customer data.
26 *
27 * @return int The error status of the validation.
28 */
29 public function validateByArray(array $inputArray, CustomerInterface $customer);
30 }
31