This file contains 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 | |
declare(strict_types=1); | |
namespace App\Commands\Cache; | |
use Nette\Application\UI\ITemplateFactory; | |
use Nette\Utils\FileSystem; | |
use Nette\Utils\Finder; | |
use Symfony\Component\Console\Command\Command; |
This file contains 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
## https://github.com/imba-runner/imba-runner | |
# Example of project installer written in PHP and JS | |
projects: | |
root: | |
root: ./ | |
scripts: |
This file contains 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\Model\Migrations; | |
use Doctrine\DBAL\Connection; | |
use Ramsey\Uuid\Uuid; | |
/** | |
* @author David Kudera <[email protected]> | |
*/ |
This file contains 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 Carrooi\NetteSandbox\Presenters; | |
use Carrooi\NetteSandbox\Model\Books; | |
use Carrooi\NoGrid\DataSource\ArrayDataSource; | |
use Nette\Application\UI\Presenter; | |
/** | |
* |
This file contains 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 | |
use Nette\Application\Responses\TextResponse; | |
/** | |
* Ares presenter | |
* | |
* @author David Kudera | |
*/ | |
class AresPresenter extends BasePresenter |