Changeset 3033582
- Timestamp:
- 02/09/2024 10:11:40 AM (2 years ago)
- Location:
- eduadmin-booking/trunk
- Files:
-
- 5 edited
-
CHANGELOG.md (modified) (1 diff)
-
PLUGIN-CHECKSUM (modified) (1 diff)
-
eduadmin.php (modified) (1 diff)
-
libraries/class-recursive-arrayaccess.php (modified) (6 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
eduadmin-booking/trunk/CHANGELOG.md
r3019685 r3033582 2 2 3 3 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. 4 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)) 4 11 5 12 ### [4.2.2](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.2.1...v4.2.2) (2024-01-10) -
eduadmin-booking/trunk/PLUGIN-CHECKSUM
r3019685 r3033582 1 c91a37314adf8c17951e723810b306ca 1 aba35655ceb67555bb5c2580fbcd8cb6 -
eduadmin-booking/trunk/eduadmin.php
r3019685 r3033582 10 10 * Description: EduAdmin plugin to allow visitors to book courses at your website 11 11 * Tags: booking, participants, courses, events, eduadmin, lega online 12 * Version: 4.2. 212 * Version: 4.2.3 13 13 * GitHub Plugin URI: multinetinteractive/eduadmin-wordpress 14 14 * GitHub Plugin URI: https://github.com/multinetinteractive/eduadmin-wordpress -
eduadmin-booking/trunk/libraries/class-recursive-arrayaccess.php
r3019683 r3033582 21 21 * @since 3.6.0 22 22 */ 23 23 24 class Recursive_ArrayAccess implements ArrayAccess { 24 25 /** … … 62 63 * @return array 63 64 */ 64 public function toArray() : array { 65 #[\ReturnTypeWillChange] 66 public function toArray() { 65 67 $data = $this->container; 66 68 foreach ( $data as $key => $value ) { … … 84 86 * @return boolean true on success or false on failure. 85 87 */ 86 public function offsetExists( $offset ) : bool { 88 #[\ReturnTypeWillChange] 89 public function offsetExists( $offset ) { 87 90 return isset( $this->container[ $offset ] ); 88 91 } … … 97 100 * @return mixed Can return all value types. 98 101 */ 99 public function offsetGet( $offset ) : mixed { 102 #[\ReturnTypeWillChange] 103 public function offsetGet( $offset ) { 100 104 return isset( $this->container[ $offset ] ) ? $this->container[ $offset ] : null; 101 105 } … … 111 115 * @return void 112 116 */ 113 public function offsetSet( $offset, $data ) : void { 117 #[\ReturnTypeWillChange] 118 public function offsetSet( $offset, $data ) { 114 119 if ( is_array( $data ) ) { 115 120 $data = new self( $data ); … … 132 137 * @return void 133 138 */ 134 public function offsetUnset( $offset ) : void { 139 #[\ReturnTypeWillChange] 140 public function offsetUnset( $offset ) { 135 141 unset( $this->container[ $offset ] ); 136 142 } -
eduadmin-booking/trunk/readme.txt
r3019685 r3033582 4 4 Requires at least: 5.8 5 5 Tested up to: 6.4 6 Stable tag: 4.2. 26 Stable tag: 4.2.3 7 7 Requires PHP: 7.0 8 8 License: GPL3 … … 46 46 The full changelog available on [GitHub](https://github.com/MultinetInteractive/EduAdmin-WordPress/blob/production/CHANGELOG.md) 47 47 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 48 55 ### [4.2.2](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.2.1...v4.2.2) (2024-01-10) 49 56 … … 67 74 * 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) 68 75 69 ### [4.1.2](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.1.1...v4.1.2) (2023-12-13)70 76 71 77 72 #### Bug Fixes73 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 76 77
Note: See TracChangeset
for help on using the changeset viewer.