This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 246784

Summary: Implementing and overloading function parameters
Product: php Reporter: sbrbot <sbrbot>
Component: EditorAssignee: Ondrej Brejla <obrejla>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.0   
Hardware: PC   
OS: Linux   
Issue Type: DEFECT Exception Reporter:

Description sbrbot 2014-08-29 22:14:16 UTC
I have the xy interface in file interfaces.php:

    interface xy
    {
       public function create(x,y);
    }

and class abc in file abc.php:

    require_once 'interfaces.php';

    class abc implements xy
    {
      public class()
      {
        ...
      }
    }

PHP editor does not report any problem with it (note: my class does not have x and y input variables), but when I want to load that class (require_once of abc.php in some PHP file) during execution PHP/Netbeans stops there without any error report or hint!
Comment 1 sbrbot 2014-08-29 22:18:21 UTC
Sorry,

    class abc implements xy
    {
      public function create()
      {
        ...
      }
    }