@@ -14,7 +14,6 @@ |
||
| 14 | 14 | use Symfony\Component\Routing\Generator\UrlGeneratorInterface; |
| 15 | 15 | use Symfony\Component\HttpKernel\Profiler\Profiler; |
| 16 | 16 | use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
| 17 | - |
|
| 18 | 17 | use PommProject\Foundation\Pomm; |
| 19 | 18 | |
| 20 | 19 | /** |
@@ -70,6 +70,9 @@ |
||
| 70 | 70 | $this->watch($name); |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | + /** |
|
| 74 | + * @param string $name |
|
| 75 | + */ |
|
| 73 | 76 | private function watch($name) |
| 74 | 77 | { |
| 75 | 78 | if ($this->stopwatch !== null) { |
@@ -11,9 +11,7 @@ |
||
| 11 | 11 | namespace PommProject\PommBundle; |
| 12 | 12 | |
| 13 | 13 | use PommProject\Foundation\Exception\SqlException; |
| 14 | -use PommProject\Foundation\Listener\Listener; |
|
| 15 | 14 | use PommProject\Foundation\Session\Session; |
| 16 | - |
|
| 17 | 15 | use Symfony\Component\Stopwatch\Stopwatch; |
| 18 | 16 | use Symfony\Component\HttpFoundation\Request; |
| 19 | 17 | use Symfony\Component\HttpFoundation\Response; |
@@ -10,6 +10,6 @@ |
||
| 10 | 10 | |
| 11 | 11 | namespace PommProject\PommBundle\PropertyInfo\Extractor; |
| 12 | 12 | |
| 13 | -@trigger_error('The '.__NAMESPACE__.'\PommExtractor class is deprecated since version 2.3 and will be removed in 3.0. Use the '.__NAMESPACE__.'\TypeExtractor class instead.', E_USER_DEPRECATED); |
|
| 13 | +@trigger_error('The ' . __NAMESPACE__ . '\PommExtractor class is deprecated since version 2.3 and will be removed in 3.0. Use the ' . __NAMESPACE__ . '\TypeExtractor class instead.', E_USER_DEPRECATED); |
|
| 14 | 14 | |
| 15 | 15 | class_alias(__NAMESPACE__ . '\TypeExtractor', __NAMESPACE__ . '\PommExtractor'); |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | $callable = [$this->datacollector, 'execute']; |
| 41 | 41 | |
| 42 | 42 | foreach ($pomm->getSessionBuilders() as $name => $builder) { |
| 43 | - $pomm->addPostConfiguration($name, function ($session) use ($callable) { |
|
| 43 | + $pomm->addPostConfiguration($name, function($session) use ($callable) { |
|
| 44 | 44 | $session |
| 45 | 45 | ->getClientUsingPooler('listener', 'query') |
| 46 | 46 | ->attachAction($callable) |
@@ -76,6 +76,7 @@ discard block |
||
| 76 | 76 | /** |
| 77 | 77 | * Get the corresponding php type of a $sql_type type |
| 78 | 78 | * |
| 79 | + * @param string $sql_type |
|
| 79 | 80 | * @return string |
| 80 | 81 | */ |
| 81 | 82 | private function getPommType(Session $session, $sql_type) |
@@ -94,6 +95,7 @@ discard block |
||
| 94 | 95 | /** |
| 95 | 96 | * Create a new Type for the $pomm_type type |
| 96 | 97 | * |
| 98 | + * @param string $pomm_type |
|
| 97 | 99 | * @return Type |
| 98 | 100 | */ |
| 99 | 101 | private function createPropertyType($pomm_type) |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | { |
| 48 | 48 | $r = new \ReflectionClass('PommProject\\PommBundle\\DatabaseDataCollector'); |
| 49 | 49 | |
| 50 | - return dirname($r->getFileName()).'/Resources/views'; |
|
| 50 | + return dirname($r->getFileName()) . '/Resources/views'; |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | /** |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | public function getFilters() |
| 59 | 59 | { |
| 60 | 60 | return [ |
| 61 | - new \Twig_SimpleFilter('sql_format', function ($sql) { |
|
| 61 | + new \Twig_SimpleFilter('sql_format', function($sql) { |
|
| 62 | 62 | return \SqlFormatter::format($sql); |
| 63 | 63 | }), |
| 64 | 64 | ]; |