diff options
author | rdalverny <rdalverny@gmail.com> | 2022-01-22 19:53:01 +0100 |
---|---|---|
committer | rdalverny <rdalverny@gmail.com> | 2022-01-22 19:53:01 +0100 |
commit | 5a0c2d333ff41ec4da6a4d58bc1553beeee1affa (patch) | |
tree | a6f2f62d76535a2e47085173c560be77b0214e15 /app/helpers.php | |
parent | c27c9d1d359828a071159995689c9c3b28d99891 (diff) | |
download | planet-5a0c2d333ff41ec4da6a4d58bc1553beeee1affa.tar planet-5a0c2d333ff41ec4da6a4d58bc1553beeee1affa.tar.gz planet-5a0c2d333ff41ec4da6a4d58bc1553beeee1affa.tar.bz2 planet-5a0c2d333ff41ec4da6a4d58bc1553beeee1affa.tar.xz planet-5a0c2d333ff41ec4da6a4d58bc1553beeee1affa.zip |
More type hints
Diffstat (limited to 'app/helpers.php')
-rw-r--r-- | app/helpers.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers.php b/app/helpers.php index 24f9d38..85c63a3 100644 --- a/app/helpers.php +++ b/app/helpers.php @@ -7,7 +7,7 @@ * is available, and we won't force the use of our own * implementation. */ -function register_polyfills() +function register_polyfills() : void { } @@ -88,7 +88,7 @@ function _g($str, $comment = '') /** * Reset the moonmoon instance. */ -function removeCustomFiles() +function removeCustomFiles() : void { $toRemove = [ config_path('config.yml'), |