add PHP boilerplate
This commit is contained in:
parent
7007922739
commit
5512a19e1f
8 changed files with 1913 additions and 3 deletions
12
src/HelloWorld.php
Normal file
12
src/HelloWorld.php
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace NoteCat;
|
||||
|
||||
class HelloWorld
|
||||
{
|
||||
public function getHello(): string
|
||||
{
|
||||
return 'Hello world! :3';
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue