Hi-Folks / array

Arr class is built on top of the PHP array functions. Arr exposes methods for creating, managing, accessing to the array data structure.
https://packagist.org/packages/hi-folks/array
MIT License
15 stars 9 forks source link

PHP stan Level 4 #42

Closed roberto-butti closed 2 years ago

roberto-butti commented 2 years ago

Now we have phpstan executed with level 3. The request is for raising the level to 4. in the file phpstan.neon set level to 4, and then execute composer run phpstan:

 parameters:
     level: 4
     paths:
         - src

Executing phpstan with level 4 you will receive this warning:

  7      Property HiFolks\DataType\Table::$schema is never read, only written.
         💡 See:
         https://phpstan.org/developing-extensions/always-read-written-propert
         ies

If this warning is solved we could increase the level of phpstan to 4.