Bristol SU Support Package
FakesLogicTesters.php
Go to the documentation of this file.
1 <?php
2 
4 
7 
12 {
18  private $logicTester;
19 
25  public function logicTester()
26  {
27  if ($this->logicTester === null) {
28  $this->logicTester = new LogicTesterFake();
29  }
30  return $this->logicTester;
31  }
32 
33 }