Вход Регистрация
Файл: vendor/whichbrowser/parser/src/Model/Family.php
Строк: 23
<?php

namespace WhichBrowserModel;

use 
WhichBrowserModelPrimitiveNameVersion;

class 
Family extends NameVersion
{
    
/**
     * Get an array of all defined properties
     *
     * @internal
     *
     * @return array
     */

    
public function toArray()
    {
        
$result = [];

        if (!empty(
$this->name) && empty($this->version)) {
            return 
$this->name;
        }

        if (!empty(
$this->name)) {
            
$result['name'] = $this->name;
        }

        if (!empty(
$this->version)) {
            
$result['version'] = $this->version->toArray();
        }

        return 
$result;
    }
}
Онлайн: 1
Реклама