.. _classes-usedmethods: .. _used-methods: Used Methods ++++++++++++ Those methods are used in the code: this means they have a definition and at least one call. They may have more than one call too. This analysis is mostly useful for detecting unused methods. .. code-block:: php used(); } // No usage of 'unused', as method call, in or out of the definition class. public function unused() { $this->used(); } } class bar extends foo { public function some() { $this->used(); } } $a = new foo(); $a->used(); ?> Connex PHP features ------------------- + `method `_ Specs _____ +--------------+-------------------------------------------------------------------------------------------------------------------------+ | Short name | Classes/UsedMethods | +--------------+-------------------------------------------------------------------------------------------------------------------------+ | Rulesets | :ref:`All `, :ref:`Changed Behavior ` | +--------------+-------------------------------------------------------------------------------------------------------------------------+ | Exakat since | 0.8.4 | +--------------+-------------------------------------------------------------------------------------------------------------------------+ | PHP Version | All | +--------------+-------------------------------------------------------------------------------------------------------------------------+ | Severity | | +--------------+-------------------------------------------------------------------------------------------------------------------------+ | Time To Fix | | +--------------+-------------------------------------------------------------------------------------------------------------------------+ | Precision | Very high | +--------------+-------------------------------------------------------------------------------------------------------------------------+ | Available in | `Entreprise Edition `_, `Exakat Cloud `_ | +--------------+-------------------------------------------------------------------------------------------------------------------------+