PHP code example of millancore / lake
1. Go to this page and download the library: Download millancore/lake library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
millancore / lake example snippets
namespace Lake\App\Command;
use Symfony\Component\Console\Command\Command;
class CommandLake extends Command
{
/**
* Undocumented function
*
* @param array $params
* @return void
*/
public function configure(array $params) : void
{
}
}
use PHPUnit\Framework\TestCase;
use Lake\App\Command\CommandLake;
class CommandLakeTest extends TestCase
{
public function testDummyConfigureMethod()
{
}
}