Skip to content

Commit 9ce9689

Browse files
authored
Merge pull request #517 from MultinetInteractive/master
v4.2.3
2 parents 4917ab2 + 20acdad commit 9ce9689

7 files changed

Lines changed: 37 additions & 24 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [4.2.3](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.2.2...v4.2.3) (2024-02-09)
6+
7+
8+
### Bug Fixes
9+
10+
* #[\ReturnTypeWillChange] instead of typing, because PHP is.. well PHP ([7684891](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/7684891ff6d55b58e186a2569d42674792e7f543))
11+
512
### [4.2.2](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.2.1...v4.2.2) (2024-01-10)
613

714

PLUGIN-CHECKSUM

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c91a37314adf8c17951e723810b306ca
1+
aba35655ceb67555bb5c2580fbcd8cb6

eduadmin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Plugin URI: https://www.eduadmin.se
1010
* Description: EduAdmin plugin to allow visitors to book courses at your website
1111
* Tags: booking, participants, courses, events, eduadmin, lega online
12-
* Version: 4.2.2
12+
* Version: 4.2.3
1313
* GitHub Plugin URI: multinetinteractive/eduadmin-wordpress
1414
* GitHub Plugin URI: https://github.com/multinetinteractive/eduadmin-wordpress
1515
* Requires at least: 5.8

libraries/class-recursive-arrayaccess.php

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* @package WordPress
2121
* @since 3.6.0
2222
*/
23+
2324
class Recursive_ArrayAccess implements ArrayAccess {
2425
/**
2526
* Internal data collection.
@@ -61,7 +62,8 @@ public function __clone() {
6162
*
6263
* @return array
6364
*/
64-
public function toArray() : array {
65+
#[\ReturnTypeWillChange]
66+
public function toArray() {
6567
$data = $this->container;
6668
foreach ( $data as $key => $value ) {
6769
if ( $value instanceof self ) {
@@ -83,7 +85,8 @@ public function toArray() : array {
8385
*
8486
* @return boolean true on success or false on failure.
8587
*/
86-
public function offsetExists( $offset ) : bool {
88+
#[\ReturnTypeWillChange]
89+
public function offsetExists( $offset ) {
8790
return isset( $this->container[ $offset ] );
8891
}
8992

@@ -96,7 +99,8 @@ public function offsetExists( $offset ) : bool {
9699
*
97100
* @return mixed Can return all value types.
98101
*/
99-
public function offsetGet( $offset ) : mixed {
102+
#[\ReturnTypeWillChange]
103+
public function offsetGet( $offset ) {
100104
return isset( $this->container[ $offset ] ) ? $this->container[ $offset ] : null;
101105
}
102106

@@ -110,7 +114,8 @@ public function offsetGet( $offset ) : mixed {
110114
*
111115
* @return void
112116
*/
113-
public function offsetSet( $offset, $data ) : void {
117+
#[\ReturnTypeWillChange]
118+
public function offsetSet( $offset, $data ) {
114119
if ( is_array( $data ) ) {
115120
$data = new self( $data );
116121
}
@@ -131,7 +136,8 @@ public function offsetSet( $offset, $data ) : void {
131136
*
132137
* @return void
133138
*/
134-
public function offsetUnset( $offset ) : void {
139+
#[\ReturnTypeWillChange]
140+
public function offsetUnset( $offset ) {
135141
unset( $this->container[ $offset ] );
136142
}
137143
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "eduadmin-wordpress-plugin",
33
"private": true,
4-
"version": "4.2.2",
4+
"version": "4.2.3",
55
"repository": "https://github.com/MultinetInteractive/EduAdmin-WordPress.git",
66
"author": "Chris Gårdenberg <chga@multinet.se>",
77
"license": "MIT",

readme.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# EduAdmin Booking
22
- Requires at least: 5.8
33
- Tested up to: 6.4
4-
- Stable tag: 4.2.2
4+
- Stable tag: 4.2.3
55
- Requires PHP: 7.0
66
- License: GPL3
77
- License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
@@ -40,6 +40,13 @@ If you notice that your API key doesn't work any more, you have to contact us.
4040

4141
The full changelog available on [GitHub](https://github.com/MultinetInteractive/EduAdmin-WordPress/blob/production/CHANGELOG.md)
4242

43+
### [4.2.3](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.2.2...v4.2.3) (2024-02-09)
44+
45+
46+
#### Bug Fixes
47+
48+
* #[\ReturnTypeWillChange] instead of typing, because PHP is.. well PHP ([7684891](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/7684891ff6d55b58e186a2569d42674792e7f543))
49+
4350
### [4.2.2](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.2.1...v4.2.2) (2024-01-10)
4451

4552

@@ -61,12 +68,5 @@ The full changelog available on [GitHub](https://github.com/MultinetInteractive/
6168

6269
* Support for the required fields in Google Search Console for the ld+json ([519a446](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/519a446527a37ae8ffc7e3d159ea99c5c9d86e45)), closes [#511](https://github.com/MultinetInteractive/EduAdmin-WordPress/issues/511)
6370

64-
### [4.1.2](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.1.1...v4.1.2) (2023-12-13)
65-
66-
67-
#### Bug Fixes
68-
69-
* Filtering the events if we're looking at a specific one for prices as well ([144762e](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/144762e9e3c9c14f7c1c0ce68dafa7feb50cb4e2))
70-
7171

7272

readme.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: mnchga
33
Tags: booking, participants, courses, events, eduadmin, lega online
44
Requires at least: 5.8
55
Tested up to: 6.4
6-
Stable tag: 4.2.2
6+
Stable tag: 4.2.3
77
Requires PHP: 7.0
88
License: GPL3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
@@ -45,6 +45,13 @@ If you notice that your API key doesn't work any more, you have to contact us.
4545

4646
The full changelog available on [GitHub](https://github.com/MultinetInteractive/EduAdmin-WordPress/blob/production/CHANGELOG.md)
4747

48+
### [4.2.3](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.2.2...v4.2.3) (2024-02-09)
49+
50+
51+
#### Bug Fixes
52+
53+
* #[\ReturnTypeWillChange] instead of typing, because PHP is.. well PHP ([7684891](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/7684891ff6d55b58e186a2569d42674792e7f543))
54+
4855
### [4.2.2](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.2.1...v4.2.2) (2024-01-10)
4956

5057

@@ -66,12 +73,5 @@ The full changelog available on [GitHub](https://github.com/MultinetInteractive/
6673

6774
* Support for the required fields in Google Search Console for the ld+json ([519a446](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/519a446527a37ae8ffc7e3d159ea99c5c9d86e45)), closes [#511](https://github.com/MultinetInteractive/EduAdmin-WordPress/issues/511)
6875

69-
### [4.1.2](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.1.1...v4.1.2) (2023-12-13)
70-
71-
72-
#### Bug Fixes
73-
74-
* Filtering the events if we're looking at a specific one for prices as well ([144762e](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/144762e9e3c9c14f7c1c0ce68dafa7feb50cb4e2))
75-
7676

7777

0 commit comments

Comments
 (0)