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
{"lastUpload":"2020-08-30T01:55:03.234Z","extensionVersion":"v3.4.3"} |
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 Qbil\TradeBundle\Domain; | |
use Doctrine\ORM\EntityManagerInterface; | |
use Qbil\TradeBundle\Entity\Contract; | |
use Qbil\TradeBundle\Entity\Contractline; | |
use Qbil\TradeBundle\Entity\Eenheid; | |
use Qbil\TradeBundle\Entity\Log; | |
use Symfony\Component\Security\Core\User\UserInterface; |
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 | |
// ..... | |
class blaBla | |
{ | |
/** | |
* @Route("/suggestdestinations") | |
* | |
* @return \Symfony\Component\HttpFoundation\Response |
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 Aws\Ec2\Ec2Client; | |
use Aws\ElasticBeanstalk\ElasticBeanstalkClient; | |
use Aws\ElasticBeanstalk\Exception\ElasticBeanstalkException; | |
use Aws\Rds\Exception\RdsException; | |
use Aws\Rds\RdsClient; | |
require __DIR__.'/vendor/autoload.php'; |
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 Qbil\CommonBundle\Services; | |
use Qbil\CommonBundle\Exception\LoadingConfigurationFailedException; | |
interface ConfigurationAdapterInterface | |
{ | |
/** | |
* @throws LoadingConfigurationFailedException |
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 Qbil\Tests\CommonBundle\Services; | |
use Qbil\CommonBundle\Services\DTOArgumentValueResolver; | |
use Qbil\Tests\Fixtures\Controller\DTOController; | |
use Qbil\Tests\Fixtures\DTO\Person; | |
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\HttpKernel\Controller\ArgumentResolver; |
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
packages: | |
yum: | |
php55-fpm: [] | |
files: | |
"/opt/elasticbeanstalk/hooks/appdeploy/pre/26_phpfpm_config.sh": | |
mode: "000755" | |
owner: root | |
group: root | |
content: | |
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
name: Code check | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
types: [ synchronize, opened, reopened, ready_for_review ] | |
jobs: |
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 Qbil\CommonBundle\Extension; | |
use Symfony\Component\HttpFoundation\Response; | |
use Webmozart\Assert\Assert; | |
final class MonospaceResponse extends Response |
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 Yup\Translation; | |
use Symfony\Component\Config\ConfigCacheFactoryInterface; | |
use Symfony\Component\Config\ConfigCacheInterface; | |
class TranslationConfigCacheFactory implements ConfigCacheFactoryInterface | |
{ | |
private ConfigCacheFactoryInterface $configCacheFactory; |
OlderNewer