-
Operating system: Mac
Python version: 3.7
*Black* version: 18.9b0
Does also happen on master:
Following on https://twitter.com/llanga/status/1052631100290420736
I have a code which uses `ya…
-
I've been working on a alternate fluent/expression interface for creating rules. Basically, what you'd now write as
` Rule rule = Rule.Create("Status", mreOperator.Equal, Status.Open);`
you…
-
Can you provide a fluent interface like this?
``` php
FTP::connection('foo')->changeDir('bar')
->makeDir('abc')
->changeDir('abc')
->…
-
It'd be nice if the Parser provided a fluent interface so you could do:
```
```
You could also chain your registerPlugin() calls instead of making them static methods.
-
## Design principles
- Remove the necessity for `ArgumentHolder` / `StatementHolder` interfaces, since they are bloaty
- They should work for unit tests in a "fluent" way as well as in the frontend
-
Would it be nice to have some kind of fluent interface?
That would allow for really readable code like:
````
toIter([1, 2, 3, 4, 5, 6])
->filter(function($v) { return $v % 2 === 0; })
->s…
-
# Bug report
When a method is documented as having a fluent interface with `@return $this` and uses `@param-this-out`, the out type is not taken into account for the return value.
### Code snipp…
-
```
It would be nice to use wro4j as a fluent interface. Groovy example:
//in groovy
new WebResourceOptimizer([
new File('app.js')
new File('other.js')
]).process([
new ImportCssProcessor…
-
```
It would be nice to use wro4j as a fluent interface. Groovy example:
//in groovy
new WebResourceOptimizer([
new File('app.js')
new File('other.js')
]).process([
new ImportCssProcessor…
-
Avoid using fluent interfaces:
https://en.wikipedia.org/wiki/Fluent_interface
https://martinfowler.com/bliki/FluentInterface.html
https://ocramius.github.io/blog/fluent-interfaces-are-evil/
http:/…