Chris Johnson
Chris Johnson
Another problem is that `Auth\Auth\AuthFactory` takes a `Segment` in its constructor, while `Aura\Session\Session` expects to generate its own `Segment`s using a `SegmentFactory`: ``` public function __construct( array $cookie, SessionInterface $session...
It does not appear that `Aura\Filter` makes use of `Aura\Filter_Interface`. For an interface package to be useful, don't we need to have implementations which actually conform to it by using...
Note to self: examine and sort out Travid build failures.
Note to self: examine and sort out Travis build failures.
I think maybe the notional mapping of the `Aura\Payload_Interface\PayloadStatus` values, which are distinct to domain objects, into HTTP status codes in `Radar\Adr\Responder` in method `getMethodForPayload()` is flawed. A **Domain** object...
In my final* design, I ended up mapping almost everything to `HTTP 200` and instead using Responder classes and templates to display useful error messages to users. *nothing is ever...
Yes, I do plan to update Radar.Adr to address this issue.
What is the domain expecting as input in a case like this? Isn't the whole notion of `UploadFile` a very HTTP (and `$_FILES`) oriented concept? Is the domain expecting a...
One thing I've discovered which can cause this or a similar behavior is the following setting: ```json "archive": { "skip-dev": true }, ``` If you set `skip-dev` to `false`, you...
@Thelvaen I am in a similar situation. I have lots of micro-commits. I always have to tag them in order to get them to appear in my parent project. It's...