Skip to content

Commit e8df7c1

Browse files
committed
fix en twig y doc.
1 parent dbb037e commit e8df7c1

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"scripts": {
4242
"docs": "php tools/phpdocumentor run --config=phpdoc.xml",
4343
"tests": "XDEBUG_MODE=coverage vendor/bin/phpunit --configuration=phpunit.xml",
44-
"phpcs-fix": "php-cs-fixer fix -v --config=php-cs-fixer.php .",
45-
"phpcs-fix-dry-run": "php-cs-fixer fix -v --dry-run --diff --config=php-cs-fixer.php .",
44+
"phpcs-fix": "php-cs-fixer fix -v --config=php-cs-fixer.php",
45+
"phpcs-fix-dry-run": "php-cs-fixer fix -v --dry-run --diff --config=php-cs-fixer.php",
4646
"phpstan": "phpstan analyse --configuration=phpstan.neon --memory-limit=1G",
4747
"phpstan-export": "phpstan analyse --configuration=phpstan.neon --level 9 --generate-baseline"
4848
},

php-cs-fixer.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121

2222
$finder = Finder::create()
2323
->in($dir)
24-
->name('*.php')
25-
->exclude('vendor')
24+
->exclude('var')
2625
;
2726

2827
return (new Config())

public/__twig/base.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191

9292
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
9393
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.28.0/components/prism-core.min.js"></script>
94-
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.28.0/plugins/autoloader/prism-autoloader.min.js"></
94+
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.28.0/plugins/autoloader/prism-autoloader.min.js"></script>
9595
{% block javascripts %}{% endblock %}
9696
</body>
9797
</html>

0 commit comments

Comments
 (0)