1. Go to this page and download the library: Download hartmann/planck 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/ */
hartmann / planck example snippets
$container = new \Hartmann\Planck\Container();
use Interop\Container\ServiceProviderInterface
class Provider implements ServiceProviderInterface
{
public function getFactories()
{
return [
stdClass::class => function(ContainerInterface $container) {
return new stdClass;
},
...
];
}
public function getExtensions()
{
return [
stdClass::class => function(ContainerInterface $container, ?stdClass $class) {
$class->foo = 'bar';
return $class;
},
...
];
}
}
$class = $container->get(stdClass::class);
$container->set('factory', $container->factory(function (ContainerInterface $container) {
return new stdClass;
}));
class HomeController {
protected $logger
public function __contruct(LoggerInterface $logger)
{
$this->logger = $logger;
}
public function index(Request $request, Response $response): Response
{
$this->logger->info('someone visited my site!');
return $response->write('Hello');
}
}
// adding the
class Request
{
public function __construct(string $method, UriInterface $uri, HeadersInterface $headers, ...);
}
class CreateUserRequest extends Request {
...
}
// adding the
// unresolvable, must be passed directly to the parameters
function ($foo) {
}
// unresolvable, must be passed directly to the parameters
function (string|int|float|array|bool $foo) {
}
// hinted,