mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-08 00:56:49 +01:00
* Fix "single_quote"
* fix "escape_implicit_backslashes"
* fix typo from f363481c
* fix single quotes in JS
* fix some minor JS CS
* fix CS v3.45.0
18 lines
344 B
PHP
18 lines
344 B
PHP
<?php
|
|
|
|
/**
|
|
* Test class to test rcube_message_header class
|
|
*/
|
|
class Framework_MessageHeader extends PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
function test_class()
|
|
{
|
|
$object = new rcube_message_header;
|
|
|
|
$this->assertInstanceOf('rcube_message_header', $object, 'Class constructor');
|
|
}
|
|
}
|