Results 4 issues of BeMySlaveDarlin

Questions? Forum: https://phalcon.io/forum or Discord: https://phalcon.io/discord **Describe the bug** `Phalcon\Tests\Database\Mvc\Model\AssignCest::mvcModelAssignWithTransaction()` fails with error `[PDOException] SQLSTATE[55000]: Object not in prerequisite state: 7 ERROR: currval of sequence "co_invoices_inv_id_seq" is not yet defined...

testing
bug
status: medium
5.0

Hi, Seems construction `new static();` inside classes doesn't works. To check ``` class Foo { public static function baz() { let obj = new static(); return get_class(obj); } } class...

bug

### Feature Right now we have possibility to use custom scripts via `\Phalcon\DevTools\Script::loadUserScripts()`, but the way it done is outdated and legacy, requires usage of temp folder `.phalcon` ``` if...

New Feature Request
Enhancement

**Is your feature request related to a problem? Please describe.** Current static text mutation: ```php use Phalcon\Text; $someText = 'some_random_TEXT\hello'; $shortUsage = Text::camelize($someText); $nestedUsage = Text::upper(Text::humanize(Text::uncamelize($someText))); ``` Looks unreadable mutation...