Skip to content

Commit 567e9b1

Browse files
committed
3.x → 4.x
1 parent 54227a9 commit 567e9b1

File tree

13 files changed

+15
-15
lines changed

13 files changed

+15
-15
lines changed

src/Scaffold/Console/command/command.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use Illuminate\Console\Command;
55
/**
66
* {{studly_name}} Command
77
*
8-
* @link https://docs.octobercms.com/3.x/extend/console-commands.html
8+
* @link https://docs.octobercms.com/4.x/extend/console-commands.html
99
*/
1010
class {{studly_name}} extends Command
1111
{

src/Scaffold/Console/component/component.stub

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use Cms\Classes\ComponentBase;
55
/**
66
* {{studly_name}} Component
77
*
8-
* @link https://docs.octobercms.com/3.x/extend/cms-components.html
8+
* @link https://docs.octobercms.com/4.x/extend/cms-components.html
99
*/
1010
class {{studly_name}} extends ComponentBase
1111
{
@@ -18,7 +18,7 @@ class {{studly_name}} extends ComponentBase
1818
}
1919

2020
/**
21-
* @link https://docs.octobercms.com/3.x/element/inspector-types.html
21+
* @link https://docs.octobercms.com/4.x/element/inspector-types.html
2222
*/
2323
public function defineProperties()
2424
{

src/Scaffold/Console/contentfield/contentfield.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use October\Contracts\Element\FilterElement;
88
/**
99
* {{studly_name}} Content Field
1010
*
11-
* @link https://docs.octobercms.com/3.x/extend/tailor-fields.html
11+
* @link https://docs.octobercms.com/4.x/extend/tailor-fields.html
1212
*/
1313
class {{studly_name}} extends ContentFieldBase
1414
{

src/Scaffold/Console/controller/controller.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Backend\Classes\Controller;
66
/**
77
* {{title_name}} Backend Controller
88
*
9-
* @link https://docs.octobercms.com/3.x/extend/system/controllers.html
9+
* @link https://docs.octobercms.com/4.x/extend/system/controllers.html
1010
*/
1111
class {{studly_name}} extends Controller
1212
{

src/Scaffold/Console/filterwidget/filterwidget.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use Backend\Classes\FilterWidgetBase;
55
/**
66
* {{studly_name}} Filter Widget
77
*
8-
* @link https://docs.octobercms.com/3.x/extend/lists/filter-widgets.html
8+
* @link https://docs.octobercms.com/4.x/extend/lists/filter-widgets.html
99
*/
1010
class {{studly_name}} extends FilterWidgetBase
1111
{

src/Scaffold/Console/formwidget/formwidget.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use Backend\Classes\FormWidgetBase;
55
/**
66
* {{studly_name}} Form Widget
77
*
8-
* @link https://docs.octobercms.com/3.x/extend/forms/form-widgets.html
8+
* @link https://docs.octobercms.com/4.x/extend/forms/form-widgets.html
99
*/
1010
class {{studly_name}} extends FormWidgetBase
1111
{

src/Scaffold/Console/migration/create_app_table.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use October\Rain\Database\Updates\Migration;
66
/**
77
* {{studly_name}} Migration
88
*
9-
* @link https://docs.octobercms.com/3.x/extend/database/structure.html
9+
* @link https://docs.octobercms.com/4.x/extend/database/structure.html
1010
*/
1111
return new class extends Migration
1212
{

src/Scaffold/Console/migration/create_table.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use October\Rain\Database\Updates\Migration;
77
/**
88
* {{studly_name}} Migration
99
*
10-
* @link https://docs.octobercms.com/3.x/extend/database/structure.html
10+
* @link https://docs.octobercms.com/4.x/extend/database/structure.html
1111
*/
1212
return new class extends Migration
1313
{

src/Scaffold/Console/migration/update_app_table.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use October\Rain\Database\Updates\Migration;
66
/**
77
* {{studly_name}} Migration
88
*
9-
* @link https://docs.octobercms.com/3.x/extend/database/structure.html
9+
* @link https://docs.octobercms.com/4.x/extend/database/structure.html
1010
*/
1111
return new class extends Migration
1212
{

src/Scaffold/Console/migration/update_table.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use October\Rain\Database\Updates\Migration;
77
/**
88
* {{studly_name}} Migration
99
*
10-
* @link https://docs.octobercms.com/3.x/extend/database/structure.html
10+
* @link https://docs.octobercms.com/4.x/extend/database/structure.html
1111
*/
1212
return new class extends Migration
1313
{

0 commit comments

Comments
 (0)