Bruce Wells

Results 21 issues of Bruce Wells

PHP 8.1 has depreciated mismatched return types on method overloads. I added appropriate return types when they were compatible with 7.1, and #[\ReturnTypeWillChange] where mixed types were returned, which are...

Minor issue, but for Hacktoberfest, I thought I would correct it. {@inheritDoc} should be @inheritDoc See [Inheritance](https://docs.phpdoc.org/latest/guides/inheritance.html)

A trailing semicolon is legal in PDO, but the library currently bombs is it is supplied. This PR allows for trailing (and sequential) semicolons in the connect string. - Could...

Attribute\AsEventListener is an 8.0 file. It is barfing in my project dependencies for 7.4. Downgraded it to 7.4 compatible code.

Attribute\AsEventListener is an 8.0 file. It is barfing in my project dependencies for 7.4. Downgraded it to 7.4 compatible code.

This PR cleans up a minor issue in README.md that produces a warning from w3.org. See lines 130-136 in https://validator.w3.org/nu/?doc=https%3A%2F%2Fgithub.com%2Fcebe%2Fmarkdown The A elements don't really add anything and are not...

Minor issue, but for Hacktoberfest, I thought I would correct it. @inheritdocs is a typo. Should be @inheritDoc See [Inheritance](https://docs.phpdoc.org/latest/guides/inheritance.html)

Carsten, This is a great package. Been using it for a while on my [PHPFUI](http://phpfui.com/?n=cebe%5Cmarkdown&c=Markdown) site which easily documents any PHP code. I was wondering if you would be up...

I am getting a **TypeError: this.box is undefined** error when I do the following: ``` var id7=new Croppr('#id7',{aspectRatio:1,startSize:[136,136],onCropEnd:function(value){$('#id3').val(value.x);$('#id4').val(value.y);$('#id5').val(value.height);$('#id6').val(value.width);}}); id7.resizeTo(136,136); id7.moveTo(10,9); ``` I am not sure why Box is not initialized...

Since it looks like you are maintaining this package, I thought I would submit a PR to upgrade to full PSR-4 autoloading. There is no need for a "files" section,...