matpompili / flarum-imgur-upload

flarum-imgur-upload is a Flarum extension to support the upload of images to the popular website Imgur.
GNU General Public License v3.0
6 stars 12 forks source link

Remove needless use statement to fix PHP warning #1

Closed tobyzerner closed 8 years ago

tobyzerner commented 8 years ago

PHP 5.6.14. Getting this warning at the top of every page after enabling the extension:

Warning: The use statement with non-compound name 'DirectoryIterator' has no effect in /vagrant/extensions/matpompili-imgur-upload/bootstrap.php on line 12

Because bootstrap.php does not have a namespace, importing DirectoryIterator is unnecessary. Removing the use DirectoryIterator line fixes the problem.