Overview
Comment:Fix missing use
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA3-256: 25a365a0c67525d769853b5fa778392dcb660d32fd183f88511dcda9538ba32a
User & Date: bohwaz on 2021-03-17 00:45:12
Other Links: branch diff | manifest | tags
Context
2021-03-17
00:46
Migrate files after commiting schema update check-in: fccfcb5cbf user: bohwaz tags: dev
00:45
Fix missing use check-in: 25a365a0c6 user: bohwaz tags: dev
00:44
Implement migration to a different file storage backend during upgrade check-in: 1efcac8962 user: bohwaz tags: dev
Changes

Modified src/include/lib/Garradin/Upgrade.php from [11896d1959] to [61187aa1ed].

1
2
3
4
5
6


7
8
9
10
11
12
13
<?php

namespace Garradin;

use Garradin\Membres\Session;
use Garradin\Membres\Champs;



class Upgrade
{
	const MIN_REQUIRED_VERSION = '1.0.0';

	static public function preCheck(): bool
	{






>
>







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

namespace Garradin;

use Garradin\Membres\Session;
use Garradin\Membres\Champs;

use Garradin\Files\Files;

class Upgrade
{
	const MIN_REQUIRED_VERSION = '1.0.0';

	static public function preCheck(): bool
	{