Skip to content

Commit b5c09bf

Browse files
committed
Release v4.2.12
1 parent 63c554b commit b5c09bf

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The MIT License (MIT)
22

33
Copyright (c) 2014-2019 British Columbia Institute of Technology
4-
Copyright (c) 2019-2022 CodeIgniter Foundation
4+
Copyright (c) 2019-2023 CodeIgniter Foundation
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

app/Config/Cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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',

app/Config/Migrations.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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_

app/Controllers/BaseController.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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
*/

0 commit comments

Comments
 (0)