Nathan Denchman
Nathan Denchman
I'm getting this same issue. It appears that the fine grained access tokens are limited to the account in which they're generated. eg. The tokens you generate will not be...
``` UserFactory::new(['name' => $this->generateRandomName()]); // only ever calls generateRandomName once ``` I have been caught out by this more than once. When I forget that it only calls `generateRandomName()` a...
Ah yes, that makes a lot of sense. Thanks for the explanation!
Looks to be a duplicate of https://github.com/hyraiq/topcat/pull/8870
It would be good if we could avoid this error by typing a variable as `@var positive-int`.
I'm having the same problem. I've tried updating the `deps` file to: ``` [DoctrineFixturesBundle] git=http://github.com/doctrine/DoctrineFixturesBundle.git target=bundles/Doctrine/Bundle/FixturesBundle [DoctrineMigrationsBundle] git=http://github.com/doctrine/DoctrineMigrationsBundle.git target=bundles/Doctrine/Bundle/MigrationsBundle ``` And the `appKernel.php` file to: ``` new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(), new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(),...
Unsure if it's related, but I've had this same error if my `.Halite.key` file gets a newline at the end of. Which it does automatically if you open it in...
That's an interesting one @bentwonk. It could very well be related to the recent change in pagination. Are you getting previous and next links for any other API calls or...
Have you tried rolling back to version 1.4 or 1.3? I don't have time to fix it right now. I might be able to look into it in a couple...
I wrote these tests a while ago: https://github.com/ndench/up-bank-api/pull/12 But I'm not set on the framework or approach. Open to some feedback!