@@ -26,11 +26,11 @@ |
||
26 | 26 | // 'driver' => 'odm_default', |
27 | 27 | // |
28 | 28 | // 'generate_proxies' => true, |
29 | - 'proxy_dir' => 'cache/DoctrineMongoODMModule/Proxy', |
|
29 | + 'proxy_dir' => 'cache/DoctrineMongoODMModule/Proxy', |
|
30 | 30 | // 'proxy_namespace' => 'DoctrineMongoODMModule\Proxy', |
31 | 31 | // |
32 | 32 | // 'generate_hydrators' => true, |
33 | - 'hydrator_dir' => 'cache/DoctrineMongoODMModule/Hydrator', |
|
33 | + 'hydrator_dir' => 'cache/DoctrineMongoODMModule/Hydrator', |
|
34 | 34 | // 'hydrator_namespace' => 'DoctrineMongoODMModule\Hydrator', |
35 | 35 | // |
36 | 36 | // 'default_db' => '', |
@@ -131,7 +131,7 @@ |
||
131 | 131 | { |
132 | 132 | $viewModel = new ViewModel(); |
133 | 133 | $viewModel->setTemplate('error/index') |
134 | - ->setVariable('message', 'An unexpected error had occured. Please try again later.'); |
|
134 | + ->setVariable('message', 'An unexpected error had occured. Please try again later.'); |
|
135 | 135 | return $viewModel; |
136 | 136 | } |
137 | 137 | } |
@@ -41,10 +41,10 @@ |
||
41 | 41 | |
42 | 42 | $plugin = new InvitationHandler(); |
43 | 43 | $plugin->setEmailValidator($validator) |
44 | - ->setMailerPlugin($mailer) |
|
45 | - ->setTranslator($translator) |
|
46 | - ->setUserRepository($repository) |
|
47 | - ->setUserTokenGenerator($generator); |
|
44 | + ->setMailerPlugin($mailer) |
|
45 | + ->setTranslator($translator) |
|
46 | + ->setUserRepository($repository) |
|
47 | + ->setUserTokenGenerator($generator); |
|
48 | 48 | |
49 | 49 | return $plugin; |
50 | 50 | } |
@@ -128,10 +128,10 @@ discard block |
||
128 | 128 | // ) |
129 | 129 | // ); |
130 | 130 | $qb->addAnd($qb->expr()->field('user')->equals($userId)) |
131 | - ->addAnd( |
|
132 | - $qb->expr()->addOr($qb->expr()->field('parent')->exists(false)) |
|
133 | - ->addOr($qb->expr()->field('parent')->equals(null)) |
|
134 | - ); |
|
131 | + ->addAnd( |
|
132 | + $qb->expr()->addOr($qb->expr()->field('parent')->exists(false)) |
|
133 | + ->addOr($qb->expr()->field('parent')->equals(null)) |
|
134 | + ); |
|
135 | 135 | |
136 | 136 | $q = $qb->getQuery(); |
137 | 137 | $entity = $q->getSingleResult(); |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | if ($userOrg->hasAssociation()) { |
253 | 253 | $qb->addAnd( |
254 | 254 | $qb->expr()->addOr($qb->expr()->field('parent')->equals($userOrg->getId())) |
255 | - ->addOr($qb->expr()->field('_id')->equals($userOrg->getId())) |
|
255 | + ->addOr($qb->expr()->field('_id')->equals($userOrg->getId())) |
|
256 | 256 | ); |
257 | 257 | } |
258 | 258 |
@@ -380,10 +380,10 @@ |
||
380 | 380 | return $this; |
381 | 381 | } |
382 | 382 | |
383 | - /** |
|
384 | - * (non-PHPdoc) |
|
385 | - * @see \Jobs\Entity\JobInterface::getOrganization() |
|
386 | - */ |
|
383 | + /** |
|
384 | + * (non-PHPdoc) |
|
385 | + * @see \Jobs\Entity\JobInterface::getOrganization() |
|
386 | + */ |
|
387 | 387 | public function getOrganization() |
388 | 388 | { |
389 | 389 | return $this->organization; |
@@ -99,8 +99,8 @@ discard block |
||
99 | 99 | $result = $this->forward()->dispatch('Auth\Controller\Password', array('action' => 'index')); |
100 | 100 | $model = new ViewModel( |
101 | 101 | array( |
102 | - 'organization' => $organization->getOrganizationName()->getName() |
|
103 | - ) |
|
102 | + 'organization' => $organization->getOrganizationName()->getName() |
|
103 | + ) |
|
104 | 104 | ); |
105 | 105 | |
106 | 106 | if (!$result->getVariable('valid', false)) { |
@@ -141,8 +141,8 @@ discard block |
||
141 | 141 | |
142 | 142 | return new ViewModel( |
143 | 143 | array( |
144 | - 'organization' => $organization->getOrganizationName()->getName() |
|
145 | - ) |
|
144 | + 'organization' => $organization->getOrganizationName()->getName() |
|
145 | + ) |
|
146 | 146 | ); |
147 | 147 | } |
148 | 148 |
@@ -27,53 +27,53 @@ discard block |
||
27 | 27 | $this->setName('installation'); |
28 | 28 | $this->setAttributes( |
29 | 29 | array( |
30 | - 'method' => 'post', |
|
31 | - 'action' => '?p=install' |
|
32 | - ) |
|
30 | + 'method' => 'post', |
|
31 | + 'action' => '?p=install' |
|
32 | + ) |
|
33 | 33 | ); |
34 | 34 | |
35 | 35 | $this->add( |
36 | 36 | array( |
37 | - 'type' => 'Text', |
|
38 | - 'name' => 'db_conn', |
|
39 | - 'options' => array( |
|
40 | - 'label' => /* @translate */ 'Database connection string', |
|
41 | - ), |
|
42 | - 'attributes' => array( |
|
43 | - 'placeholder' => 'mongodb://localhost:27017/YAWIK', |
|
44 | - ), |
|
37 | + 'type' => 'Text', |
|
38 | + 'name' => 'db_conn', |
|
39 | + 'options' => array( |
|
40 | + 'label' => /* @translate */ 'Database connection string', |
|
41 | + ), |
|
42 | + 'attributes' => array( |
|
43 | + 'placeholder' => 'mongodb://localhost:27017/YAWIK', |
|
44 | + ), |
|
45 | 45 | |
46 | - ) |
|
46 | + ) |
|
47 | 47 | ); |
48 | 48 | |
49 | 49 | $this->add( |
50 | 50 | array( |
51 | - 'type' => 'Text', |
|
52 | - 'name' => 'username', |
|
53 | - 'options' => array( |
|
54 | - 'label' => /* @translate */ 'Initial user name', |
|
55 | - ), |
|
56 | - ) |
|
51 | + 'type' => 'Text', |
|
52 | + 'name' => 'username', |
|
53 | + 'options' => array( |
|
54 | + 'label' => /* @translate */ 'Initial user name', |
|
55 | + ), |
|
56 | + ) |
|
57 | 57 | ); |
58 | 58 | |
59 | 59 | $this->add( |
60 | 60 | array( |
61 | - 'type' => 'Password', |
|
62 | - 'name' => 'password', |
|
63 | - 'options' => array( |
|
64 | - 'label' => /* @translate */ 'Password', |
|
65 | - ), |
|
66 | - ) |
|
61 | + 'type' => 'Password', |
|
62 | + 'name' => 'password', |
|
63 | + 'options' => array( |
|
64 | + 'label' => /* @translate */ 'Password', |
|
65 | + ), |
|
66 | + ) |
|
67 | 67 | ); |
68 | 68 | |
69 | 69 | $this->add( |
70 | 70 | array( |
71 | - 'type' => 'Text', |
|
72 | - 'name' => 'email', |
|
73 | - 'options' => array( |
|
74 | - 'label' => /* @translate */ 'Email address for system messages', |
|
75 | - ), |
|
76 | - ) |
|
71 | + 'type' => 'Text', |
|
72 | + 'name' => 'email', |
|
73 | + 'options' => array( |
|
74 | + 'label' => /* @translate */ 'Email address for system messages', |
|
75 | + ), |
|
76 | + ) |
|
77 | 77 | ); |
78 | 78 | } |
79 | 79 | |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | ), |
89 | 89 | 'validators' => array( |
90 | 90 | array('name' => 'Install/ConnectionString', |
91 | - 'break_chain_on_failure' => true), |
|
91 | + 'break_chain_on_failure' => true), |
|
92 | 92 | array('name' => 'Install/Connection'), |
93 | 93 | ), |
94 | 94 | ), |
@@ -26,7 +26,7 @@ |
||
26 | 26 | 'odm_default' => array( |
27 | 27 | 'subscribers' => array( |
28 | 28 | 'Settings/InjectEntityResolverListener', |
29 | - ), |
|
29 | + ), |
|
30 | 30 | ), |
31 | 31 | ), |
32 | 32 | ), |
@@ -60,9 +60,9 @@ |
||
60 | 60 | protected function addButtonsFieldset() |
61 | 61 | { |
62 | 62 | $this->add( |
63 | - array( |
|
64 | - 'type' => 'Jobs/MultipostButtonFieldset' |
|
65 | - ) |
|
63 | + array( |
|
64 | + 'type' => 'Jobs/MultipostButtonFieldset' |
|
65 | + ) |
|
66 | 66 | ); |
67 | 67 | } |
68 | 68 | } |