@@ -20,26 +20,26 @@ discard block |
||
20 | 20 | $kernel = $this->get('kernel'); |
21 | 21 | if ($models === null) { |
22 | 22 | $list = $this->container->getParameter("tpg_extjs.entities"); |
23 | - return new StreamedResponse(function () use($list, $generator, $kernel) { |
|
23 | + return new StreamedResponse(function() use($list, $generator, $kernel) { |
|
24 | 24 | foreach ($list as $configEntityLine) { |
25 | 25 | list($bundleName, $path) = explode("/", substr($configEntityLine, 1), 2); |
26 | 26 | /** @var Bundle $bundle */ |
27 | 27 | $bundle = $kernel->getBundle($bundleName, true); |
28 | 28 | |
29 | 29 | /** Entity end with backslash, it is a directory */ |
30 | - $loadAllEntitiesFromDir = ($configEntityLine[strlen($configEntityLine)-1] == "/"); |
|
30 | + $loadAllEntitiesFromDir = ($configEntityLine[strlen($configEntityLine) - 1] == "/"); |
|
31 | 31 | |
32 | - if ( $loadAllEntitiesFromDir ) { |
|
32 | + if ($loadAllEntitiesFromDir) { |
|
33 | 33 | $bundleRef = new \ReflectionClass($bundle); |
34 | 34 | $dir = new Finder(); |
35 | 35 | $dir->files()->depth('== 0')->in(dirname($bundleRef->getFileName()).'/'.$path)->name('/.*\.php$/'); |
36 | - foreach($dir as $file) { |
|
36 | + foreach ($dir as $file) { |
|
37 | 37 | /** @var SplFileInfo $file*/ |
38 | - $entityClassname = $bundleRef->getNamespaceName() . "\\" . str_replace("/", "\\", $path) . substr($file->getFilename(), 0, -4); |
|
38 | + $entityClassname = $bundleRef->getNamespaceName()."\\".str_replace("/", "\\", $path).substr($file->getFilename(), 0, -4); |
|
39 | 39 | echo $generator->generateMarkupForEntity($entityClassname); |
40 | 40 | } |
41 | - } else { |
|
42 | - $entityClassname = $bundle->getNamespace() . "\\" . str_replace("/", "\\", $path); |
|
41 | + } else { |
|
42 | + $entityClassname = $bundle->getNamespace()."\\".str_replace("/", "\\", $path); |
|
43 | 43 | echo $generator->generateMarkupForEntity($entityClassname); |
44 | 44 | } |
45 | 45 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | if (!is_array($models)) { |
52 | 52 | $models = array($models); |
53 | 53 | } |
54 | - return new StreamedResponse(function () use($models, $generator) { |
|
54 | + return new StreamedResponse(function() use($models, $generator) { |
|
55 | 55 | foreach ($models as $model) { |
56 | 56 | $model = str_replace(".", "\\", $model); |
57 | 57 | echo $generator->generateMarkupForEntity($model); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | } else { |
103 | 103 | $requestData = array(); |
104 | 104 | $i = 0; |
105 | - foreach($actionparams as $parameter) { |
|
105 | + foreach ($actionparams as $parameter) { |
|
106 | 106 | $requestData[$parameter->getName()] = $data[$i++]; |
107 | 107 | } |
108 | 108 | } |
@@ -21,19 +21,19 @@ |
||
21 | 21 | $this->twigEngine = new TwigEngineMokcup(); |
22 | 22 | $this->service->setTwigEngine($this->twigEngine); |
23 | 23 | $this->service->setModelFieldsParameters(array( |
24 | - "date" => array( "format" => "d-m-y") |
|
24 | + "date" => array( "format" => "d-m-y") |
|
25 | 25 | )); |
26 | 26 | } |
27 | 27 | |
28 | 28 | public function testCustomFieldParameters() { |
29 | - $this->service->generateMarkupForEntity('Test\TestBundle\Model\Person'); |
|
30 | - $fieldsType = array(); |
|
31 | - foreach ($this->twigEngine->renderParameters['fields'] as $field) { |
|
29 | + $this->service->generateMarkupForEntity('Test\TestBundle\Model\Person'); |
|
30 | + $fieldsType = array(); |
|
31 | + foreach ($this->twigEngine->renderParameters['fields'] as $field) { |
|
32 | 32 | if (isset($field['format'])) { |
33 | - $fieldsType[$field['name']] = $field['format']; |
|
33 | + $fieldsType[$field['name']] = $field['format']; |
|
34 | + } |
|
34 | 35 | } |
35 | - } |
|
36 | - $this->assertEquals("d-m-y", $fieldsType['createdAt']); |
|
36 | + $this->assertEquals("d-m-y", $fieldsType['createdAt']); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | public function testEntityProperty() { |
@@ -21,7 +21,7 @@ |
||
21 | 21 | $this->twigEngine = new TwigEngineMokcup(); |
22 | 22 | $this->service->setTwigEngine($this->twigEngine); |
23 | 23 | $this->service->setModelFieldsParameters(array( |
24 | - "date" => array( "format" => "d-m-y") |
|
24 | + "date" => array("format" => "d-m-y") |
|
25 | 25 | )); |
26 | 26 | } |
27 | 27 |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | |
17 | 17 | public function testGetsActionWithFilterOnName() { |
18 | 18 | $filter = json_encode(array( |
19 | - array('property'=>'name','value'=>'Ford') |
|
19 | + array('property'=>'name', 'value'=>'Ford') |
|
20 | 20 | )); |
21 | 21 | $this->client->request('GET', '/cars.json?filter='.$filter); |
22 | 22 | $content = json_decode($this->client->getResponse()->getContent(), true); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | public function testGetsActionWithFilterOnPlateNumner() { |
28 | 28 | $filter = json_encode(array( |
29 | - array('property'=>'plateNumber','value'=>'BB243') |
|
29 | + array('property'=>'plateNumber', 'value'=>'BB243') |
|
30 | 30 | )); |
31 | 31 | $this->client->request('GET', '/cars.json?filter='.$filter); |
32 | 32 | $content = json_decode($this->client->getResponse()->getContent(), true); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | $manager = $this->client->getContainer()->get("doctrine.orm.default_entity_manager"); |
24 | 24 | $owner = new CarOwner(); |
25 | 25 | $owner->setName("james"); |
26 | - foreach($this->records as $record) { |
|
26 | + foreach ($this->records as $record) { |
|
27 | 27 | $owner->addCar($record); |
28 | 28 | } |
29 | 29 | $manager->persist($owner); |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | public function testGetWithAssociation() { |
46 | 46 | $filter = json_encode(array( |
47 | - array('property'=>'name','value'=>'Ford') |
|
47 | + array('property'=>'name', 'value'=>'Ford') |
|
48 | 48 | )); |
49 | 49 | $this->client->request('GET', '/cars.json?filter='.$filter); |
50 | 50 | $content = json_decode($this->client->getResponse()->getContent(), true); |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace Tpg\ExtjsBundle\Tests\Command\ODM; |
3 | 3 | |
4 | -include_once(__DIR__ . '/../../app/AppKernel.php'); |
|
4 | +include_once(__DIR__.'/../../app/AppKernel.php'); |
|
5 | 5 | |
6 | 6 | use Symfony\Bundle\FrameworkBundle\Console\Application; |
7 | 7 | use Symfony\Component\Console\Tester\CommandTester; |
@@ -7,7 +7,7 @@ |
||
7 | 7 | |
8 | 8 | public function testGetWithAssociation() { |
9 | 9 | $filter = json_encode(array( |
10 | - array('property'=>'name','value'=>'Invoice 1') |
|
10 | + array('property'=>'name', 'value'=>'Invoice 1') |
|
11 | 11 | )); |
12 | 12 | $this->client->request('GET', '/orders.json?filter='.$filter); |
13 | 13 | $content = json_decode($this->client->getResponse()->getContent(), true); |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace Tpg\ExtjsBundle\Tests\Command; |
3 | 3 | |
4 | -include_once(__DIR__ . '/../app/AppKernel.php'); |
|
4 | +include_once(__DIR__.'/../app/AppKernel.php'); |
|
5 | 5 | |
6 | 6 | use Doctrine\Bundle\MongoDBBundle\Command\CreateSchemaDoctrineODMCommand; |
7 | 7 | use Doctrine\Bundle\MongoDBBundle\Command\DropSchemaDoctrineODMCommand; |
@@ -5,8 +5,8 @@ |
||
5 | 5 | exit(0); |
6 | 6 | } |
7 | 7 | |
8 | -$loader = require_once __DIR__ . '/bootstrap.php'; |
|
9 | -require_once __DIR__ . '/app/AppKernel.php'; |
|
8 | +$loader = require_once __DIR__.'/bootstrap.php'; |
|
9 | +require_once __DIR__.'/app/AppKernel.php'; |
|
10 | 10 | use Symfony\Component\HttpFoundation\Request; |
11 | 11 | |
12 | 12 | $kernel = new AppKernel('test', true); |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | break; |
261 | 261 | case 'Doctrine\ORM\Mapping\JoinColumns': |
262 | 262 | if (count($annotation->value) > 1) { |
263 | - throw new \Exception('Multiple foreign key is not supported'); |
|
263 | + throw new \Exception('Multiple foreign key is not supported'); |
|
264 | 264 | } |
265 | 265 | $saveField = true; |
266 | 266 | $field['name'] = $this->convertNaming($annotation->value[0]->name); |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | |
285 | 285 | /** Add the ability to override field parameter */ |
286 | 286 | if (isset($this->fieldsParams[$field['type']])) { |
287 | - $field = array_merge($field, $this->fieldsParams[$field['type']]); |
|
287 | + $field = array_merge($field, $this->fieldsParams[$field['type']]); |
|
288 | 288 | } |
289 | 289 | |
290 | 290 | if (!empty($association)) { |
@@ -47,12 +47,12 @@ discard block |
||
47 | 47 | */ |
48 | 48 | public function generateRemotingApi() { |
49 | 49 | $list = array(); |
50 | - foreach($this->remotingBundles as $bundle) { |
|
50 | + foreach ($this->remotingBundles as $bundle) { |
|
51 | 51 | $bundleRef = new \ReflectionClass($bundle); |
52 | 52 | $controllerDir = new Finder(); |
53 | 53 | $controllerDir->files()->in(dirname($bundleRef->getFileName()).'/Controller/')->name('/.*Controller\.php$/'); |
54 | - foreach($controllerDir as $controllerFile) { |
|
55 | - $controller = $bundleRef->getNamespaceName() . "\\Controller\\" . substr($controllerFile->getFilename(), 0, -4); |
|
54 | + foreach ($controllerDir as $controllerFile) { |
|
55 | + $controller = $bundleRef->getNamespaceName()."\\Controller\\".substr($controllerFile->getFilename(), 0, -4); |
|
56 | 56 | $controllerRef = new \ReflectionClass($controller); |
57 | 57 | foreach ($controllerRef->getMethods(\ReflectionMethod::IS_PUBLIC) as $method) { |
58 | 58 | /** @var $methodDirectAnnotation Direct */ |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | $modelName = str_replace("\\", ".", $classRef->getName()); |
85 | 85 | } |
86 | 86 | if ($classModelAnnotation->generateAsBase === true) { |
87 | - $modelName = substr($modelName, 0, strrpos($modelName, '.')+1) . 'Base' . substr($modelName, strrpos($modelName, '.')+1); |
|
87 | + $modelName = substr($modelName, 0, strrpos($modelName, '.') + 1).'Base'.substr($modelName, strrpos($modelName, '.') + 1); |
|
88 | 88 | } |
89 | 89 | $structure = array( |
90 | 90 | 'name' => $modelName, |
@@ -153,10 +153,10 @@ discard block |
||
153 | 153 | if (strpos(get_class($annotation), 'Symfony\Component\Validator\Constraints') === 0) { |
154 | 154 | $validators[] = array_merge( |
155 | 155 | array('field'=>$this->convertNaming($property->getName())), |
156 | - $this->getValidator(substr($className, 40),$annotation) |
|
156 | + $this->getValidator(substr($className, 40), $annotation) |
|
157 | 157 | ); |
158 | 158 | } |
159 | - switch(get_class($annotation)) { |
|
159 | + switch (get_class($annotation)) { |
|
160 | 160 | case 'Tpg\ExtjsBundle\Annotation\Model\Field': |
161 | 161 | $field['type'] = $annotation->type; |
162 | 162 | break; |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | $format = explode(',', |
210 | 210 | substr( |
211 | 211 | $type, |
212 | - stripos($type, '<')+2, |
|
212 | + stripos($type, '<') + 2, |
|
213 | 213 | -2 |
214 | 214 | ) |
215 | 215 | ); |
@@ -273,11 +273,11 @@ discard block |
||
273 | 273 | $field['type'] = $this->getEntityColumnType($association['entity'], $annotation->referencedColumnName); |
274 | 274 | $field['useNull'] = true; |
275 | 275 | $association['key'] = $this->convertNaming($annotation->name); |
276 | - $field['mapping'] = $property->getName() . '.' . $annotation->referencedColumnName; |
|
276 | + $field['mapping'] = $property->getName().'.'.$annotation->referencedColumnName; |
|
277 | 277 | break; |
278 | 278 | } |
279 | 279 | } |
280 | - if($fieldIsId){ |
|
280 | + if ($fieldIsId) { |
|
281 | 281 | $structure['idProperty'] = $field['name']; |
282 | 282 | } |
283 | 283 | |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | * @throws \Exception |
310 | 310 | * @return string |
311 | 311 | */ |
312 | - protected function tryToGetJoinColumnNameOfMappedBy($annotation){ |
|
312 | + protected function tryToGetJoinColumnNameOfMappedBy($annotation) { |
|
313 | 313 | $annotation = $this->tryToGetJoinColumnAnnotationOfMappedBy($annotation); |
314 | 314 | if ($annotation !== null) { |
315 | 315 | if ($annotation instanceof JoinColumn) { |
@@ -329,9 +329,9 @@ discard block |
||
329 | 329 | * @param OneToMany $annotation |
330 | 330 | * @return null|Annotation |
331 | 331 | */ |
332 | - protected function tryToGetJoinColumnAnnotationOfMappedBy($annotation){ |
|
332 | + protected function tryToGetJoinColumnAnnotationOfMappedBy($annotation) { |
|
333 | 333 | $result = null; |
334 | - if($annotation->targetEntity && $annotation->mappedBy) { |
|
334 | + if ($annotation->targetEntity && $annotation->mappedBy) { |
|
335 | 335 | $result = $this->getAnnotation( |
336 | 336 | $annotation->targetEntity, |
337 | 337 | $annotation->mappedBy, |
@@ -457,7 +457,7 @@ discard block |
||
457 | 457 | */ |
458 | 458 | protected function getValidator($name, $annotation) { |
459 | 459 | $validate = array(); |
460 | - switch($name) { |
|
460 | + switch ($name) { |
|
461 | 461 | case 'NotBlank': |
462 | 462 | case 'NotNull': |
463 | 463 | $validate['type'] = "presence"; |
@@ -467,8 +467,8 @@ discard block |
||
467 | 467 | break; |
468 | 468 | case 'Length': |
469 | 469 | $validate['type'] = "length"; |
470 | - $validate['max'] = (int)$annotation->max; |
|
471 | - $validate['min'] = (int)$annotation->min; |
|
470 | + $validate['max'] = (int) $annotation->max; |
|
471 | + $validate['min'] = (int) $annotation->min; |
|
472 | 472 | break; |
473 | 473 | case 'Regex': |
474 | 474 | if ($annotation->match) { |
@@ -481,9 +481,9 @@ discard block |
||
481 | 481 | case 'MinLength': |
482 | 482 | $validate['type'] = "length"; |
483 | 483 | if ($name == "MaxLength") { |
484 | - $validate['max'] = (int)$annotation->limit; |
|
484 | + $validate['max'] = (int) $annotation->limit; |
|
485 | 485 | } else { |
486 | - $validate['min'] = (int)$annotation->limit; |
|
486 | + $validate['min'] = (int) $annotation->limit; |
|
487 | 487 | } |
488 | 488 | break; |
489 | 489 | case 'Choice': |