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
| Note: Using configuration file /var/www/html/phpstan.dist.neon. | |
| 260/260 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓] 100% | |
| ------ --------------------------------------------------------------------------------------------------------------------------------------------- | |
| Line config/reference.php | |
| ------ --------------------------------------------------------------------------------------------------------------------------------------------- | |
| 1339 Parameter #1 $config (array{'when@dev'?: array<string, array{alias: string, deprecated?: array{package: string, version: string, message?: | |
| string}}|array{path: array<string, string>|string, controller?: string, methods?: list<string>|string, requirements?: array<string, string> | |
| , defaults?: array<string, mixed>, options?: array<string, mixed>, host?: array<string, string>|string, schemes?: list<string>|string, ...} | |
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\Form\Extension; | |
| use Symfony\Component\Form\AbstractTypeExtension; | |
| use Symfony\Component\Form\Extension\Core\Type\FormType; | |
| use Symfony\Component\OptionsResolver\OptionsResolver; | |
| class LabelTranslationDomainExtension extends AbstractTypeExtension | |
| { |
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\Validator; | |
| use Symfony\Component\Validator\Constraints\Range; | |
| use Symfony\Component\Validator\Constraints\RangeValidator; | |
| class YearRange extends Range | |
| { | |
| public function __construct($options) |
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\Form\Type; | |
| use Money\Currencies\ISOCurrencies; | |
| use Money\Currency; | |
| use Money\Formatter\DecimalMoneyFormatter; | |
| use Money\Parser\DecimalMoneyParser; | |
| use Symfony\Component\Form\AbstractType; | |
| use Symfony\Component\Form\Extension\Core\Type\MoneyType; | |
| use Symfony\Component\Form\FormBuilderInterface; | |
| use Symfony\Component\Form\CallbackTransformer; |
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
| use Symfony\Component\Validator\Validation; | |
| class TestedTypeTest extends TypeTestCase | |
| { | |
| private $validator; | |
| protected function getExtensions() | |
| { | |
| $validator = Validation::createValidator(); |
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
| private function addHttpClientOptionsSection(NodeBuilder $rootNode): NodeBuilder | |
| { | |
| return $rootNode | |
| ->integerNode('max_host_connections') | |
| ->info('The maximum number of connections to a single host.') | |
| ->defaultValue(6) | |
| ->end() | |
| ->arrayNode('default_options') | |
| ->children() | |
| ->fixXmlConfig('header') |
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
| private function addHttpClientSection(ArrayNodeDefinition $rootNode) | |
| { | |
| $subNode = $rootNode | |
| ->children() | |
| ->arrayNode('http_client') | |
| ->info('HTTP Client configuration') | |
| ->canBeEnabled() | |
| ->fixXmlConfig('client') | |
| ->children(); |
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
| manyToOne: | |
| candidate: | |
| targetEntity: \AppBundle\Entity\Candidate | |
| inversedBy: interviews | |
| joinColumn: | |
| name: candidate_id | |
| referencedColumnName: id | |
| user: | |
| targetEntity: \AppBundle\Entity\User | |
| inversedBy: interviews |
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
| { | |
| "require": { | |
| "symfony/symfony": "^4.0" | |
| }, | |
| "minimum-stability": "dev" | |
| } |
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 | |
| declare(strict_types = 1); | |
| namespace App\Entity; | |
| class Product | |
| { | |
| public $id; |
NewerOlder