Fix CS
This commit is contained in:
parent
456fbdc101
commit
b4da68cf7b
5 changed files with 14 additions and 11 deletions
1
.php_cs
1
.php_cs
|
@ -7,5 +7,6 @@ $finder = Symfony\CS\Finder\DefaultFinder::create()
|
|||
;
|
||||
|
||||
return Symfony\CS\Config\Config::create()
|
||||
->level(Symfony\CS\FixerInterface::SYMFONY_LEVEL)
|
||||
->finder($finder)
|
||||
;
|
||||
|
|
2
Makefile
2
Makefile
|
@ -17,7 +17,7 @@ unit: vendor
|
|||
cs:
|
||||
$(PHP) bin/php-cs-fixer fix --dry-run
|
||||
|
||||
fix-cs
|
||||
fix-cs:
|
||||
$(PHP) bin/php-cs-fixer fix
|
||||
|
||||
clean:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# `docker-compose-viz`
|
||||
|
||||
[![Build Status](https://travis-ci.org/pmsipilot/docker-compose-viz.svg?branch=master)](https://travis-ci.org/pmsipilot/docker-compose-viz)
|
||||
[![Build Status](https://travis-ci.org/pmsipilot/docker-compose-viz.svg?branch=master)](https://travis-ci.org/pmsipilot/docker-compose-viz) [![StyleCI](https://styleci.io/repos/65026022/shield)](https://styleci.io/repos/65026022)
|
||||
|
||||
|
||||
## How to use
|
||||
|
||||
|
|
7
bin/dcv
7
bin/dcv
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/env php
|
||||
<?php
|
||||
function resolve(array $components) : string {
|
||||
function resolve(array $components) : string
|
||||
{
|
||||
return implode(DIRECTORY_SEPARATOR, $components);
|
||||
}
|
||||
|
||||
|
@ -9,7 +10,7 @@ require_once resolve(
|
|||
__DIR__,
|
||||
'..',
|
||||
'vendor',
|
||||
'autoload.php'
|
||||
'autoload.php',
|
||||
]
|
||||
);
|
||||
|
||||
|
@ -18,7 +19,7 @@ require_once resolve(
|
|||
__DIR__,
|
||||
'..',
|
||||
'src',
|
||||
'application.php'
|
||||
'application.php',
|
||||
]
|
||||
);
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue