Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
wp-statistics
/
includes
/
vendor
/
whichbrowser
/
parser
/
src
/
Model
:
Using.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WhichBrowser\Model; use WhichBrowser\Model\Primitive\NameVersion; class Using 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; } }