From 2dcd4eaa7aaf1c4970ab472bbaacaa7a2838235b Mon Sep 17 00:00:00 2001 From: Gemorroj Date: Mon, 26 Feb 2018 15:04:40 +0300 Subject: [PATCH] fix readme --- README.md | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 093ebd7..47496f6 100644 --- a/README.md +++ b/README.md @@ -244,11 +244,33 @@ $m3uParser->addTag(ExtCustomTag::class); $data = $m3uParser->parseFile('path_to_file.m3u'); print_r($data); -M3uData - - +/* +M3uParser\M3uData Object +( + [attributes:M3uParser\M3uData:private] => Array + ( + ) + [storage:ArrayIterator:private] => Array + ( + [0] => M3uParser\M3uEntry Object + ( + [lineDelimiter:protected] => + [extTags:M3uParser\M3uEntry:private] => Array + ( + [0] => M3uParser\Tests\ExtCustomTag Object + ( + [data:M3uParser\Tests\ExtCustomTag:private] => 123 + ) + ) + + [path:M3uParser\M3uEntry:private] => http://nullwave.barricade.lan:8000/club + ) + + ) -``` +) +*/ + ```