summaryrefslogtreecommitdiff
path: root/src/Container
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2019-04-24 11:01:37 +0200
committermsquare <msquare@notrademark.de>2019-04-25 18:17:19 +0200
commit79c92da8c14de61dccc015f04c3900aac4bd4179 (patch)
tree7b4e0f51d2bd2508905fdc697b31a73810a1b5d5 /src/Container
parent7c3a0c70e8d23f47287ead148c6b8682216352c6 (diff)
Formatting
```bash php-cs-fixer fix --allow-risky=yes --rules=@PSR2,psr4,mb_str_functions.php_unit_construct,php_unit_ordered_covers,trailing_comma_in_multiline_array --rules='{"array_syntax": {"syntax":"short"}}' [tests/|src/] ```
Diffstat (limited to 'src/Container')
-rw-r--r--src/Container/ServiceProvider.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Container/ServiceProvider.php b/src/Container/ServiceProvider.php
index 2a1bbebf..c9a0324e 100644
--- a/src/Container/ServiceProvider.php
+++ b/src/Container/ServiceProvider.php
@@ -22,10 +22,14 @@ abstract class ServiceProvider
/**
* Register container bindings
*/
- public function register() { }
+ public function register()
+ {
+ }
/**
* Called after other services had been registered
*/
- public function boot() { }
+ public function boot()
+ {
+ }
}