HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/www/home/wp-content/plugins/mailoptin/src/authifly/src/Data/Collection.php
<?php
/*!
* Authifly
* https://hybridauth.github.io | https://github.com/mailoptin/authifly
*  (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html
*/

namespace Authifly\Data;

/**
 * A very basic Data collection.
 */
final class Collection
{
    /**
    * Data collection
    *
    * @var mixed
    */
    protected $collection = null;

    /**
    * @param mixed $data
    */
    public function __construct($data = null)
    {
        $this->collection = new \stdClass();

        if (is_object($data)) {
            $this->collection = $data;
        }

        $this->collection = (object) $data;
    }

    /**
    * Retrieves the whole colletion as array
    *
    * @return mixed
    */
    public function toArray()
    {
        return (array) $this->collection;
    }

    /**
    * Retrieves an item
    *
    * @param $property
    *
    * @return mixed
    */
    public function get($property)
    {
        if ($this->exists($property)) {
            return $this->collection->$property;
        }
    }

    /**
    * Add or update an item
    *
    * @param $property
    * @param mixed $value
    */
    public function set($property, $value)
    {
        if ($property) {
            $this->collection->$property = $value;
        }
    }

    /**
    * .. until I come with a better name..
    *
    * @param $property
    *
    * @return Collection
    */
    public function filter($property)
    {
        if ($this->exists($property)) {
            $data = $this->get($property);

            if (! is_a($data, 'Collection')) {
                $data = new Collection($data);
            }

            return $data;
        }

        return new Collection([]);
    }

    /**
    * Checks whether an item within the collection
    *
    * @param $property
    *
    * @return bool
    */
    public function exists($property)
    {
        return property_exists($this->collection, $property);
    }

    /**
    * Finds whether the collection is empty
    *
    * @return bool
    */
    public function isEmpty()
    {
        return ! (bool) $this->count();
    }

    /**
    * Count all items in collection
    *
    * @return int
    */
    public function count()
    {
        return count($this->properties());
    }

    /**
    * Returns all items properties names
    *
    * @return array
    */
    public function properties()
    {
        $properties = [];

        foreach ($this->collection as $property) {
            $properties[] = $property;
        }

        return $properties;
    }

    /**
    * Returns all items values
    *
    * @return array
    */
    public function values()
    {
        $values = [];

        foreach ($this->collection as $property) {
            $values[] = $this->get($property);
        }

        return $values;
    }
}