Few code standards. Remove composer vendor folder

This commit is contained in:
2025-04-04 12:26:47 +00:00
parent ed83a3afc3
commit 4dd1683e1a
24 changed files with 69 additions and 1152 deletions

View File

@ -1,6 +1,6 @@
<?php
function fibonacci($n) {
function fibonacci(int $n) : int {
if ($n <= 1)
return $n;
return fibonacci($n - 1) + fibonacci($n - 2);