File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed
Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 11The MIT License (MIT)
22
33Copyright (c) 2014-2019 British Columbia Institute of Technology
4- Copyright (c) 2019-2022 CodeIgniter Foundation
4+ Copyright (c) 2019-2023 CodeIgniter Foundation
55
66Permission is hereby granted, free of charge, to any person obtaining a copy
77of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ class Cache extends BaseConfig
134134 *
135135 * @see https://codeigniter.com/user_guide/libraries/caching.html#memcached
136136 *
137- * @var array<string, boolean |int|string>
137+ * @var array<string, bool |int|string>
138138 */
139139 public $ memcached = [
140140 'host ' => '127.0.0.1 ' ,
Original file line number Diff line number Diff line change @@ -42,9 +42,12 @@ class Migrations extends BaseConfig
4242 *
4343 * This is the format that will be used when creating new migrations
4444 * using the CLI command:
45- * > php spark migrate:create
45+ * > php spark make:migration
4646 *
47- * Typical formats:
47+ * Note: if you set an unsupported format, migration runner will not find
48+ * your migration files.
49+ *
50+ * Supported formats:
4851 * - YmdHis_
4952 * - Y-m-d-His_
5053 * - Y_m_d_His_
Original file line number Diff line number Diff line change @@ -37,6 +37,12 @@ abstract class BaseController extends Controller
3737 */
3838 protected $ helpers = [];
3939
40+ /**
41+ * Be sure to declare properties for any property fetch you initialized.
42+ * The creation of dynamic property is deprecated in PHP 8.2.
43+ */
44+ // protected $session;
45+
4046 /**
4147 * Constructor.
4248 */
You can’t perform that action at this time.
0 commit comments