Plugin Directory

Changeset 3033582


Ignore:
Timestamp:
02/09/2024 10:11:40 AM (2 years ago)
Author:
mnchga
Message:

Committing changes for 4.2.3

Location:
eduadmin-booking/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • eduadmin-booking/trunk/CHANGELOG.md

    r3019685 r3033582  
    22
    33All 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))
    411
    512### [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
     1aba35655ceb67555bb5c2580fbcd8cb6
  • eduadmin-booking/trunk/eduadmin.php

    r3019685 r3033582  
    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
  • eduadmin-booking/trunk/libraries/class-recursive-arrayaccess.php

    r3019683 r3033582  
    2121 * @since   3.6.0
    2222 */
     23
    2324class Recursive_ArrayAccess implements ArrayAccess {
    2425    /**
     
    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 ) {
     
    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    }
     
    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    }
     
    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 );
     
    132137     * @return void
    133138     */
    134     public function offsetUnset( $offset ) : void {
     139    #[\ReturnTypeWillChange]
     140    public function offsetUnset( $offset ) {
    135141        unset( $this->container[ $offset ] );
    136142    }
  • eduadmin-booking/trunk/readme.txt

    r3019685 r3033582  
    44Requires at least: 5.8
    55Tested up to: 6.4
    6 Stable tag: 4.2.2
     6Stable tag: 4.2.3
    77Requires PHP: 7.0
    88License: GPL3
     
    4646The 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
     
    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)
    7076
    7177
    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 
    76 
    77 
Note: See TracChangeset for help on using the changeset viewer.