Skip to content

Commit

Permalink
Release v4.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jan 9, 2023
1 parent 63c554b commit b5c09bf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)

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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion app/Config/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class Cache extends BaseConfig
*
* @see https://codeigniter.com/user_guide/libraries/caching.html#memcached
*
* @var array<string, boolean|int|string>
* @var array<string, bool|int|string>
*/
public $memcached = [
'host' => '127.0.0.1',
Expand Down
7 changes: 5 additions & 2 deletions app/Config/Migrations.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,12 @@ class Migrations extends BaseConfig
*
* This is the format that will be used when creating new migrations
* using the CLI command:
* > php spark migrate:create
* > php spark make:migration
*
* Typical formats:
* Note: if you set an unsupported format, migration runner will not find
* your migration files.
*
* Supported formats:
* - YmdHis_
* - Y-m-d-His_
* - Y_m_d_His_
Expand Down
6 changes: 6 additions & 0 deletions app/Controllers/BaseController.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ abstract class BaseController extends Controller
*/
protected $helpers = [];

/**
* Be sure to declare properties for any property fetch you initialized.
* The creation of dynamic property is deprecated in PHP 8.2.
*/
// protected $session;

/**
* Constructor.
*/
Expand Down

0 comments on commit b5c09bf

Please sign in to comment.