mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-14 12:13: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()
|
|
{
|
|
}
|
|
}
|