Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @packagehubzero-cms
* @copyright Copyright (c) 2005-2020 The Regents of the University of California.
Expand All @@ -19,18 +18,19 @@
**/
class Migration20250417000000Redirect extends Base
{
/**
* Up
**/
public function up()
{
$this->addComponentEntry('redirect');
}
/**
* Up
**/
public function up()
{
$this->addComponentEntry('redirect');
}

/**
* Down
**/
public function down()
{
$this->deleteComponentEntry('redirect');
}
/**
* Down
**/
public function down()
{
$this->deleteComponentEntry('redirect');
}
}