diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-05 08:11:31 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-05 08:11:31 +0100 |
commit | a6c8fe099d40267138807d1068f631f424c53780 (patch) | |
tree | cd64b536687fd51133abb927951f8e4e55dd99de /apps/dav/lib/Migration | |
parent | 9d7f02ec4795c5da2ae41f92dc9569d13dc81e7c (diff) | |
download | nextcloud-server-a6c8fe099d40267138807d1068f631f424c53780.tar.gz nextcloud-server-a6c8fe099d40267138807d1068f631f424c53780.zip |
bump dav version for migration
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/dav/lib/Migration')
-rw-r--r-- | apps/dav/lib/Migration/Version1008Date20181030113700.php | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/apps/dav/lib/Migration/Version1008Date20181030113700.php b/apps/dav/lib/Migration/Version1008Date20181030113700.php index 1cc6223a9e9..9e26df7792e 100644 --- a/apps/dav/lib/Migration/Version1008Date20181030113700.php +++ b/apps/dav/lib/Migration/Version1008Date20181030113700.php @@ -20,6 +20,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ +declare(strict_types=1); namespace OCA\DAV\Migration; @@ -30,14 +31,15 @@ use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; -/** - * add column for share notes - * - * Class Version15000Date20180927120000 - */ class Version1008Date20181030113700 extends SimpleMigrationStep { - public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { + /** + * @param IOutput $output + * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` + * @param array $options + * @return null|ISchemaWrapper + */ + public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); |