for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Form;
use Symfony\Component\Form\Extension\Core\Type\TextType;
class ReadonlyTextType extends TextType {
public function getBlockPrefix(): string {
return 'readonly_text';
}