Jacob Thomason
Jacob Thomason
> @oojacoboo logging can be implemented using events. We have SentMessageEvent for successful ones and FailureMessageEvent for failures. @stof I noticed this. But since we're not using Symfony framework or...
What is needed for support? Does Porpaginas need to implement an interface? What causes it to not support generics?
I haven't used the pagination implementation yet, so I'm not familiar with it. That said, I think we need to support an interface implementation and not a pagination lib directly....
Yea, if we can add a check for `iterable`, that makes the most sense. Generics support was added recently and was a quick addition with a focus on iterables to...
It's also not working for a blob URI here as well.
Picking your PoW server is a start. At least then if one PoW system is down, you can change it over to a working one. Regardless, I'd like to see...
@mdoelker Building off that last example. Here is how it is currently. You cannot mix factories and Input annotated classes together. A factory requires that you annotate the input type...
@mdoelker That's correct. I removed the `#[Field]` attribute that was on the `FooInput` class. That isn't needed. As for the `Type` or the `Input` annotation needing to be on the...
Maybe we should just remove the requirement for a target class to have any annotations at all, and solely rely on the `Factory` annotated method. That would be a BC...
@mdoelker hmm, maybe it was only requiring the annotation because of the nested input then. We've now migrated all our factories over to `Input` annotated classes and the issue no...