-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chunked files won't reassemble due to getInnerIterator call #41
Comments
Hi @p365labs I've copied your problem to a new issue, mostly because I think this could be a potential bug. I'll take a look at this issue asap. :) |
this is my PHP version on Ubuntu 12.04
|
Hmm. I have a little problem testing this one. Mainly because I'm failing at installing a Symfony2 version 2.1.6. Is there a reason you're working on a 8 month old version of it? According to the Release Process, version 2.1 has reached End of Maintenance.
I'd consider updating to 2.3. But anyway, maybe it will clarify sooner as expected. Could you post me the response after adding the following to var_dump(get_class($chunks->getIterator()));
var_dump(get_class($chunks->getIterator()->getInnerIterator()));
die(); The expected output should be something like this:
Strange is that you don't end up getting an exception. This is an indicator that This one will lead to a dependency change, if the reason of it all lies in the version of Symfony2. |
Ehy probably you were right, these are the debug infos you requested : If you check the Symfony api online, you'll see that in SY 2.1 PathFilterIterator is not present, it's implemented from SY 2.2. The difference is taht getIterator() returns an ArrayIterator... how does it sound ? |
Ok I've tested it with "symfony/symfony": "2.3.1", Thanks |
@p365labs:
original: a comment in #21
The text was updated successfully, but these errors were encountered: