for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* PHP Package Boilerplate
* Boilerplate for PHP packages.
*
* @link https://github.com/janesmae/php-package-boilerplate
* @version 0.1.0
* @author Jaan Janesmae <[email protected]>
* @copyright 2016 Jaan Janesmae
* @license MIT License (https://github.com/janesmae/php-package-boilerplate/blob/master/LICENSE)
*/
namespace janesmae\boilerplate;
* Class Boilerplate.
* @since 0.1.0
class Boilerplate
{
* @param bool $bool
* @return bool
public function testInit($bool = true)
return $bool;
}