You are here

UnusedPrivateMethodUnitTest.inc in Coder 8.3.x

Same filename and directory in other branches
  1. 8.3 tests/DrupalPractice/Objects/UnusedPrivateMethodUnitTest.inc

File

tests/DrupalPractice/Objects/UnusedPrivateMethodUnitTest.inc
View source
<?php

class Test {

  /**
   * Private constructor in case class can be instantiated.
   */
  private function __construct() {
  }

  /**
   * Method is not called from anywhere in the class.
   */
  private function bong() {
  }

}

Classes

Namesort descending Description
Test