Sibyx/phpGPX

View on GitHub
src/phpGPX/Models/Person.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Created            16/02/2017 22:58
 * @author            Jakub Dubec <jakub.dubec@gmail.com>
 */

namespace phpGPX\Models;

use phpGPX\Helpers\SerializationHelper;

/**
 * Class Person
 * A person or organisation
 * @package phpGPX\Models
 */
class Person implements Summarizable
{

    /**
     * Name of person or organization.
     * An original GPX 1.1 attribute.
     * @var string
     */
    public $name;

    /**
     * E-mail address.
     * An original GPX 1.1 attribute.
     * @var Email|null
     */
    public $email;

    /**
     * Link to Web site or other external information about person.
     * An original GPX 1.1 attribute.
     * @var Link[]
     */
    public $links;

    /**
     * Person constructor.
     */
    public function __construct()
    {
        $this->name = null;
        $this->email = null;
        $this->links = null;
    }


    /**
     * Serialize object to array
     * @return array
     */
    public function toArray()
    {
        return [
            'name' => (string) $this->name,
            'email' => SerializationHelper::serialize($this->email),
            'links' => SerializationHelper::serialize($this->links)
        ];
    }
}