I just installed Eclipse to use it with PHP. I have a file with the content:
<?php
require 'content/addon.php';
?>
The problem is that the file addon.php
doesn't exist yet Eclipse is not showing any warnings or errors.
Is there a way to configure Eclipse to show errors on files that are requested by require
or include
, but the file doesn't exist?
The example above is simple, but I'm going to work with a big website with hundreds of files and I want to find those missing requires without have to test all pages.