* mostly complete

This commit is contained in:
Danyi Dávid
2018-05-06 13:53:46 +02:00
parent 27248bd3e3
commit 2f3577b614
93 changed files with 2604 additions and 331 deletions

View File

@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace App\Plates;
use League\CommonMark\CommonMarkConverter;
use Psr\Container\ContainerInterface;
class StringExtensionFactory
{
public function __invoke(ContainerInterface $container) : StringExtension
{
$converter = new CommonMarkConverter();
return new StringExtension($converter);
}
}