This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Reference: https://medium.com/better-programming/dependency-injection-containers-in-javascript-5fd2c2b4be30 | |
// | |
import parseFunction from 'parse-function' | |
const app = parseFunction({ | |
ecmaVersion: 2017, | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Migrations; | |
use Phinx\Seed\AbstractSeed; | |
use Symfony\Component\Filesystem\Filesystem; | |
use Symfony\Component\Filesystem\Exception\FileNotFoundException; | |
class AbstractSeedFromJson extends AbstractSeed | |
{ |