<?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() {

  }

}
