Completed
Pull Request — experimental/3.1 (#2265)
by Kiyotaka
38:21
created
app/Acme/Entity/SecretProductFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     /**
55 55
      * Gets the SQL query part to add to a query.
56 56
      *
57
-     * @param ClassMetaData $targetEntity
57
+     * @param ClassMetadata $targetEntity
58 58
      * @param string $targetTableAlias
59 59
      *
60 60
      * @return string The constraint SQL if there is available, empty string otherwise.
Please login to merge, or discard this patch.
src/Eccube/Doctrine/Filter/SQLFilterConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
             throw new InvalidArgumentException("$filterClassName should implement ".ConditionalSQLFilter::class);
62 62
         }
63 63
         $this->config->addFilter($filterClassName, $filterClassName);
64
-        $this->app->before(function (Request $request, Application $app) use ($filterClassName) {
64
+        $this->app->before(function(Request $request, Application $app) use ($filterClassName) {
65 65
             $enable = call_user_func($filterClassName.'::isApplicable', $request, $app);
66 66
             if ($enable) {
67 67
                 $filters = $this->app['orm.em']->getFilters();
Please login to merge, or discard this patch.