File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -234,6 +234,13 @@ jobs:
234234 cd e2e/undiscoverable-symbols-3
235235 composer install
236236 ../../phpstan
237+ - php-version : 7.4
238+ extensions : phalcon4
239+ ini-values : memory_limit=256M
240+ operating-system : ubuntu-latest
241+ script : |
242+ cd e2e/phalcon-null
243+ ../../phpstan
237244 steps :
238245 - name : " Checkout"
239246 uses : actions/checkout@v3
Original file line number Diff line number Diff line change 1+ parameters :
2+ paths :
3+ - test.php
4+ level : 5
5+ reportMaybesInMethodSignatures : true
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ namespace Userland \Library \Forms ;
6+
7+ use Phalcon \Forms \Element \ElementInterface ;
8+
9+ class TextElement implements ElementInterface {
10+ public function render (array $ attributes = []): string {
11+ return '<input type="text"> ' ;
12+ }
13+ }
You can’t perform that action at this time.
0 commit comments