mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-15 04:23:14 +03:00
19 lines
261 B
PHP
19 lines
261 B
PHP
|
<?php
|
||
|
class PartialMockTestClass
|
||
|
{
|
||
|
public $constructorCalled = FALSE;
|
||
|
|
||
|
public function __construct()
|
||
|
{
|
||
|
$this->constructorCalled = TRUE;
|
||
|
}
|
||
|
|
||
|
public function doSomething()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function doAnotherThing()
|
||
|
{
|
||
|
}
|
||
|
}
|