Overview
Comment:Remove unused 'use' statement
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | emails
Files: files | file ages | folders
SHA3-256: 143953387e08d61ba85b4a6b28d96b1e6419fbe34eb5223a928de56ef938b19f
User & Date: bohwaz on 2022-06-02 00:00:26
Other Links: branch diff | manifest | tags
Context
2022-06-02
00:21
Add bounce handling API check-in: 25bd88c969 user: bohwaz tags: emails
00:00
Remove unused 'use' statement check-in: 143953387e user: bohwaz tags: emails
2022-06-01
23:32
Merge with trunk check-in: 838c0498da user: bohwaz tags: emails
Changes

Modified src/scripts/cron.php from [0e717ab28d] to [72a40d7bb2].

1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace Garradin;

use Garradin\Services\Reminders;
use Garradin\Users\Emails;

if (PHP_SAPI != 'cli') {
	die("Wrong call");
}

require_once __DIR__ . '/../include/init.php';






<







1
2
3
4
5

6
7
8
9
10
11
12
<?php

namespace Garradin;

use Garradin\Services\Reminders;


if (PHP_SAPI != 'cli') {
	die("Wrong call");
}

require_once __DIR__ . '/../include/init.php';