Thomas Landauer
Thomas Landauer
Closes #54 Info is taken from https://github.com/timohirt/terraform-provider-hetznerdns/issues/54#issuecomment-1484124155
I have this DKIM record in my `terraform.tf`: ```terraform value = "v=DKIM1;h=sha256;k=rsa;s=email;p=MIIB...QAB"" ``` Now, upon each `terraform apply`, I'm getting: ``` # hetznerdns_record.... will be updated in-place ~ resource "hetznerdns_record"...
`doctrine/orm` 2.12.0 supports arrays of enums, see https://github.com/doctrine/orm/pull/9497 This is the syntax: ```php #[ORM\Column(type: Types::SIMPLE_ARRAY, length: 255, nullable: true, enumType: Foo::class)] private array $foo = []; ``` With the setter/getter...
I'm talking about: > QueryBuilderSetParameter - src/Repository/... - To improve performance set explicit type for objects $queryBuilder->andWhere('a.user = :user')->setParameter('user', $user); Would it be possible to create a linked "help" page...
After upgrading to Symfony 7.0, I'm getting: > Fatal error: Type of Tightenco\Collect\Support\Debug\HtmlDumper::$styles must be array (as in class Symfony\Component\VarDumper\Dumper\CliDumper) in vendor/tightenco/collect/src/Collect/Support/Debug/HtmlDumper.php on line 7 This is probably due to...
See https://en.wikipedia.org/wiki/Bounce_message
When answering "yes" to the nullable-question ("Can this field be null in the database (nullable)"), the result is: ```php /** * @ORM\Column(type="json", nullable=true) */ private $col1 = []; /** *...
I'm suggesting to add this possible outcome to the wizard: ```php #[ORM\Column(nullable:true, enumType: Suit::class)] private ?Suit $suit = null; ``` Maybe via a dedicated `enum` entry in the types list,...
Psalm is reporting this: > ERROR: LessSpecificImplementedReturnType - src/Repository/LinkRepository.php:8:12 - The inherited return type 'list' for Doctrine\ORM\EntityRepository::findAll is more specific than the implemented return type for Doctrine\ORM\EntityRepository::findall 'array' (see https://psalm.dev/166)...
I'm suggesting to change this line after `php bin/console make:migration`: > Next: Review the new migration "src/Migrations/Version20211030130836.php" to > Next: Review the new migration phpstorm://open?file=/.../src/Migrations/Version20211030130836.php ... if Symfony's `ide` option...