File tree 8 files changed +24
-14
lines changed
JadeSymfonyBundle/Command
8 files changed +24
-14
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ return [
4
+ 'directory_list ' => [
5
+ 'src ' ,
6
+ 'vendor ' ,
7
+ ],
8
+
9
+ 'exclude_file_regex ' => '@^vendor/.*/(tests?|Tests?)/@ ' ,
10
+
11
+ 'exclude_analysis_directory_list ' => [
12
+ 'vendor/ ' ,
13
+ ],
14
+ ];
Original file line number Diff line number Diff line change 2
2
3
3
namespace Jade \JadeSymfonyBundle \Command ;
4
4
5
- use Jade \Jade ;
6
5
use Symfony \Bundle \FrameworkBundle \Command \ContainerAwareCommand ;
7
6
use Symfony \Component \Console \Input \InputInterface ;
8
7
use Symfony \Component \Console \Output \OutputInterface ;
Original file line number Diff line number Diff line change @@ -117,8 +117,7 @@ public function __construct($kernel)
117
117
protected function getAppDirectory ($ kernel )
118
118
{
119
119
/* @var KernelInterface $kernel */
120
- if (
121
- method_exists ($ kernel , 'getProjectDir ' ) &&
120
+ if (method_exists ($ kernel , 'getProjectDir ' ) &&
122
121
($ directory = $ kernel ->getProjectDir ()) &&
123
122
file_exists ($ directory = "$ directory/app " )
124
123
) {
Original file line number Diff line number Diff line change 3
3
namespace Jade \Symfony \Traits ;
4
4
5
5
/**
6
- * @internal
7
- *
8
6
* Trait Filters.
7
+ *
8
+ * @property-read \Pug\Pug $jade
9
9
*/
10
10
trait Filters
11
11
{
Original file line number Diff line number Diff line change 8
8
use Symfony \Component \DependencyInjection \ContainerInterface ;
9
9
10
10
/**
11
- * @internal
12
- *
13
11
* Trait HelpersHandler.
12
+ *
13
+ * @property-read \Pug\Pug $jade
14
14
*/
15
15
trait HelpersHandler
16
16
{
Original file line number Diff line number Diff line change 6
6
use Jade \Symfony \Contracts \InstallerInterface ;
7
7
8
8
/**
9
- * @internal
10
- *
11
9
* Trait Installer.
12
10
*/
13
11
trait Installer
Original file line number Diff line number Diff line change 5
5
use Pug \Pug ;
6
6
7
7
/**
8
- * @internal
9
- *
10
8
* Trait Options.
9
+ *
10
+ * @property-read \Pug\Pug $jade
11
11
*/
12
12
trait Options
13
13
{
Original file line number Diff line number Diff line change @@ -907,10 +907,10 @@ public function testOptionDefaultingOnException()
907
907
908
908
public function testMixedLoader ()
909
909
{
910
- $ loader = new MixedLoader (new ArrayLoader (array (
910
+ $ loader = new MixedLoader (new ArrayLoader ([
911
911
'fozz ' => 'fozz template ' ,
912
912
'bazz ' => 'bazz template ' ,
913
- ) ));
913
+ ] ));
914
914
915
915
$ loader ->setTemplate ('foo ' , 'bar ' );
916
916
$ loader ->setTemplateSource ('bar ' , 'biz ' );
@@ -927,7 +927,7 @@ public function testMixedLoader()
927
927
928
928
public function testCssWithCustomAssetsHelper ()
929
929
{
930
- include_once __DIR__ . '/AssetsHelper.php ' ;
930
+ include_once __DIR__ . '/AssetsHelper.php ' ;
931
931
$ helper = new AssetsHelper ();
932
932
$ css = new Css ($ helper );
933
933
You can’t perform that action at this time.
0 commit comments