Woody Gilk

Results 35 issues of Woody Gilk

## Description There are several methods that document return types as `CollectionInterface` when they should be documented as `static` for IDE completion. ## Motivation and context By correcting these return...

I was playing a game (Faster Than Light) at a lower-than-native size, and 8bb applied the smaller size background.

From what I can tell `vlucas/phpdotenv` is only used when using a the `dotenv` configuration option. As such, I recommend that the dependency be a [`suggest`](https://getcomposer.org/doc/04-schema.md#suggest) instead of a `require`.

Refer to changes make in #58; the following methods should be modified: - Merge functionality of `addColumns()` into `columns()` - Merge functionality of `addFrom()` into `from()`

enhancement

*Consolidating discussion from #71, #66, #58, #31 to document the plan for implementing modifications to queries. This applies mainly to `SELECT` but also other queries.* **WIP: This issue will be...

enhancement
documentation

Running "god check" results in: using event system: netlink starting event handler forking off new process forked process with pid = 3550 killing process [fail] never received process exit event...

``` php class Dep { } abstract class Foo { public function __construct($key, Dep $dep) { print_r(compact('key', 'dep')); } } class Bar extends Foo { } $injector = new Auryn\Injector;...

documentation

Whenever I use this middleware when combined with the [`sink`](http://guzzle.readthedocs.io/en/latest/request-options.html#sink) option empty files are written: ```php $client->get($uri, ['sink' => "$dir/$uri"]); ``` The file `$dir/$uri` is created but has no content.

There is an odd mix of `snake_case` (`table_name`, etc) and `camelCase` (`fetchAll`, `nameList`, etc) going on in the code.

discussion

It would be nice to have a generic `replace()` method: ```php $s = $s->replace('foo', 'bar'); ``` Expected signature: ```php function replace(string $search, string $replace, int $limit = -1); ```