burzum

Results 30 issues of burzum

- PHPMD version: >= 2.8 - PHP Version: 7.4 - Installation type: phar - Operating System / Distribution & Version: Windows 10 ### Current Behavior ```sh php phive.phar install phpmd/[email protected]...

Bug
Build scripts
PHAR

As already suggested 2 years ago https://github.com/cakephp/phinx/issues/249#issuecomment-373716784 ```php // suggested backward compatible way, using a factory to create the object $this->table('some_table') ->addColumn(Column::text('name')->length(212)->notNull()) ->addColumn(Column::bool('active')->default(false) ->update(); // even shorter complementary API, use...

enhancement

For some reason the SQL queries in this migration run just fine if I execute them in HeidiSQL. The triggers are created. It just doesn't work for some reason when...

enhancement

```php $user = []; try { v::keyset( v::key('username', v::allOf( v::notEmpty(), v::length(3, 24) )), v::key('email', v::allOf( v::notEmpty(), v::email() )), v::key('password', v::allOf( v::notEmpty(), v::length(8, 60), )), ) ->assert($data); } catch (ValidatorException $e)...

I'm building a wrapper for this library and a service class for my app and when I wanted to make the formatter exchangeable I realized that I can't typehint the...

improvement

Moxie doens't support reading of gif image sizes? The following code, used with plupload, returns always false for gif but works fine for png and jpg. Please not that the...

enhancement

> Fatal error: Uncaught Error: Call to a member function id() on array > in \wp-content\plugins\crayon-syntax-highlighter\crayon_formatter.class.php on line 36 I'm getting this error when using php 7.4. Wordpress Version is...

I don't mind implementing this and proving a PR but before I do so, I would like to know if there is a chance this will be accepted. The exception...

[ ] Add ` Phauthentic\Authentication\AuthenticationException` and use it for all exceptions. [ ] Change the identifier error array to an object. [ ] Find, evaluate and change other places that...

We're trying to use langdetect for ES 2.4.4 for our project but we're running into a very high memory usage. Without the langdetect we have usually only a memory footprint...