mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
574388665a
- Skeleton of mock internal driver - Skeleton of test suite - Re-arranged lots of code - Made drive name localized (improves #37)
13 lines
No EOL
286 B
PHP
13 lines
No EOL
286 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\NewsSync\Test;
|
|
|
|
class RuntimeData extends \JKingWeb\NewsSync\RuntimeData {
|
|
public $conf;
|
|
public $db;
|
|
public $user;
|
|
|
|
public function __construct(\JKingWeb\NewsSync\Conf $conf = null) {
|
|
$this->conf = $conf;
|
|
}
|
|
} |