From 7b3f34dace600003578f163b6e07e9a9423d9e8a Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 20 Apr 2018 15:39:49 +0200 Subject: [PATCH 1/4] style: move/add comments Signed-off-by: Thierry Bugier --- src/CFPropertyList/CFPropertyList.php | 30 +++++++++++++++++---------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/src/CFPropertyList/CFPropertyList.php b/src/CFPropertyList/CFPropertyList.php index 68884f6..d6adbed 100644 --- a/src/CFPropertyList/CFPropertyList.php +++ b/src/CFPropertyList/CFPropertyList.php @@ -237,7 +237,9 @@ public function load($file = null, $format = null) case CFPropertyList::FORMAT_BINARY: $this->readBinary($file); break; - case CFPropertyList::FORMAT_AUTO: // what we now do is ugly, but neccessary to recognize the file format + + case CFPropertyList::FORMAT_AUTO: + // what we now do is ugly, but neccessary to recognize the file format $fd = fopen($file, "rb"); if (($magic_number = fread($fd, 8)) === false) { throw IOException::notReadable($file); @@ -256,8 +258,10 @@ public function load($file = null, $format = null) break; } $this->detectedFormat = CFPropertyList::FORMAT_XML; - // else: xml format, break not neccessary + // Fall back to CFPropertyList::FORMAT_XML + case CFPropertyList::FORMAT_XML: + // else: xml format, break not neccessary $doc = new DOMDocument(); $prevXmlErrors = libxml_use_internal_errors(true); libxml_clear_errors(); @@ -299,7 +303,9 @@ public function parse($str = null, $format = null) case CFPropertyList::FORMAT_BINARY: $this->parseBinary($str); break; - case CFPropertyList::FORMAT_AUTO: // what we now do is ugly, but neccessary to recognize the file format + + case CFPropertyList::FORMAT_AUTO: + // what we now do is ugly, but neccessary to recognize the file format if (($magic_number = substr($str, 0, 8)) === false) { throw IOException::notReadable(""); } @@ -316,8 +322,10 @@ public function parse($str = null, $format = null) break; } $this->detectedFormat = CFPropertyList::FORMAT_XML; - // else: xml format, break not neccessary + // no break: fallback to FORMAT_XML + case CFPropertyList::FORMAT_XML: + // else: xml format, break not neccessary $doc = new DOMDocument(); $prevXmlErrors = libxml_use_internal_errors(true); libxml_clear_errors(); @@ -348,13 +356,13 @@ protected function getLibxmlErrors() */ protected function import(DOMNode $node, $parent) { - // abort if there are no children + // abort if there are no children if (!$node->childNodes->length) { return; } foreach ($node->childNodes as $n) { - // skip if we can't handle the element + // skip if we can't handle the element if (!isset(self::$types[$n->nodeName])) { continue; } @@ -362,13 +370,13 @@ protected function import(DOMNode $node, $parent) $class = __NAMESPACE__ . '\\'.self::$types[$n->nodeName]; $key = null; - // find previous if possible + // find previous if possible $ps = $n->previousSibling; while ($ps && $ps->nodeName == '#text' && $ps->previousSibling) { $ps = $ps->previousSibling; } - // read if possible + // read if possible if ($ps && $ps->nodeName == 'key') { $key = $ps->firstChild->nodeValue; } @@ -409,11 +417,11 @@ protected function import(DOMNode $node, $parent) break; } - // Dictionaries need a key + // Dictionaries need a key if ($parent instanceof CFDictionary) { $parent->add($key, $value); - } // others don't - else { + } else { + // others don't $parent->add($value); } } From 4c490006a5dbd14e5725612a223ad1453623cd58 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 20 Apr 2018 15:43:16 +0200 Subject: [PATCH 2/4] style(example): fix code style for examples Signed-off-by: Thierry Bugier --- examples/example-create-01.php | 30 +++++++------- examples/example-create-02.php | 22 +++++----- examples/example-create-03.php | 18 ++++----- examples/example-create-04.php | 74 ++++++++++++++++------------------ examples/example-modify-01.php | 27 +++++-------- examples/example-read-01.php | 10 ++--- examples/example-read-02.php | 12 +++--- examples/example-read-03.php | 12 +++--- examples/example-read-04.php | 8 ++-- examples/example-read-05.php | 8 ++-- 10 files changed, 99 insertions(+), 122 deletions(-) diff --git a/examples/example-create-01.php b/examples/example-create-01.php index ec98219..2cb913e 100644 --- a/examples/example-create-01.php +++ b/examples/example-create-01.php @@ -48,8 +48,8 @@ namespace CFPropertyList; // just in case... -error_reporting( E_ALL ); -ini_set( 'display_errors', 'on' ); +error_reporting(E_ALL); +ini_set('display_errors', 'on'); /** * Require CFPropertyList @@ -66,42 +66,40 @@ * Manuall Create the sample.xml.plist */ // the Root element of the PList is a Dictionary -$plist->add( $dict = new CFDictionary() ); +$plist->add($dict = new CFDictionary()); // Year Of Birth1965 -$dict->add( 'Year Of Birth', new CFNumber( 1965 ) ); +$dict->add('Year Of Birth', new CFNumber(1965)); // Date Of Graduation2004-06-22T19:23:43Z -$dict->add( 'Date Of Graduation', new CFDate( gmmktime( 19, 23, 43, 06, 22, 2004 ) ) ); +$dict->add('Date Of Graduation', new CFDate(gmmktime(19, 23, 43, 06, 22, 2004))); // Pets Names -$dict->add( 'Pets Names', new CFArray() ); +$dict->add('Pets Names', new CFArray()); // PicturePEKBpYGlmYFCPA== // to keep it simple we insert an already base64-encoded string -$dict->add( 'Picture', new CFData( 'PEKBpYGlmYFCPA==', true ) ); +$dict->add('Picture', new CFData('PEKBpYGlmYFCPA==', true)); // City Of BirthSpringfield -$dict->add( 'City Of Birth', new CFString( 'Springfield' ) ); +$dict->add('City Of Birth', new CFString('Springfield')); // NameJohn Doe -$dict->add( 'Name', new CFString( 'John Doe' ) ); +$dict->add('Name', new CFString('John Doe')); // Kids NamesJohnKyra -$dict->add( 'Kids Names', $array = new CFArray() ); -$array->add( new CFString( 'John' ) ); -$array->add( new CFString( 'Kyra' ) ); +$dict->add('Kids Names', $array = new CFArray()); +$array->add(new CFString('John')); +$array->add(new CFString('Kyra')); /* * Save PList as XML */ -$plist->saveXML( __DIR__.'/example-create-01.xml.plist' ); +$plist->saveXML(__DIR__.'/example-create-01.xml.plist'); /* * Save PList as Binary */ -$plist->saveBinary( __DIR__.'/example-create-01.binary.plist' ); - -?> \ No newline at end of file +$plist->saveBinary(__DIR__.'/example-create-01.binary.plist'); diff --git a/examples/example-create-02.php b/examples/example-create-02.php index f8adf39..c5c91d8 100644 --- a/examples/example-create-02.php +++ b/examples/example-create-02.php @@ -47,11 +47,13 @@ * @subpackage plist.examples */ namespace CFPropertyList; -use \DateTime, \DateTimeZone; + +use \DateTime; +use \DateTimeZone; // just in case... -error_reporting( E_ALL ); -ini_set( 'display_errors', 'on' ); +error_reporting(E_ALL); +ini_set('display_errors', 'on'); /** * Require CFPropertyList @@ -73,8 +75,8 @@ 'Year Of Birth' => 1965, // Note: dates cannot be guessed, so this will become a CFNumber and be treated as an integer // See example-04.php for a possible workaround - 'Date Of Graduation' => gmmktime( 19, 23, 43, 06, 22, 2004 ), - 'Date Of Birth' => new DateTime( '1984-09-07 08:15:23', new DateTimeZone( 'Europe/Berlin' ) ), + 'Date Of Graduation' => gmmktime(19, 23, 43, 06, 22, 2004), + 'Date Of Birth' => new DateTime('1984-09-07 08:15:23', new DateTimeZone('Europe/Berlin')), 'Pets Names' => array(), // Note: data cannot be guessed, so this will become a CFString // See example-03.php for a possible workaround @@ -85,18 +87,16 @@ ); $td = new CFTypeDetector(); -$guessedStructure = $td->toCFType( $structure ); -$plist->add( $guessedStructure ); +$guessedStructure = $td->toCFType($structure); +$plist->add($guessedStructure); /* * Save PList as XML */ -$plist->saveXML( __DIR__.'/example-create-02.xml.plist' ); +$plist->saveXML(__DIR__.'/example-create-02.xml.plist'); /* * Save PList as Binary */ -$plist->saveBinary( __DIR__.'/example-create-02.binary.plist' ); - -?> \ No newline at end of file +$plist->saveBinary(__DIR__.'/example-create-02.binary.plist'); diff --git a/examples/example-create-03.php b/examples/example-create-03.php index 57db762..4ae36f9 100644 --- a/examples/example-create-03.php +++ b/examples/example-create-03.php @@ -50,8 +50,8 @@ namespace CFPropertyList; // just in case... -error_reporting( E_ALL ); -ini_set( 'display_errors', 'on' ); +error_reporting(E_ALL); +ini_set('display_errors', 'on'); /** * Require CFPropertyList @@ -72,28 +72,26 @@ $structure = array( 'Year Of Birth' => 1965, // Note: dates cannot be guessed, it thus has to be specified explicitly - 'Date Of Graduation' => new CFDate( gmmktime( 19, 23, 43, 06, 22, 2004 ) ), + 'Date Of Graduation' => new CFDate(gmmktime(19, 23, 43, 06, 22, 2004)), 'Pets Names' => array(), // Note: data cannot be guessed, it thus has to be specified explicitly - 'Picture' => new CFData( 'PEKBpYGlmYFCPA==', true ), + 'Picture' => new CFData('PEKBpYGlmYFCPA==', true), 'City Of Birth' => 'Springfield', 'Name' => 'John Doe', 'Kids Names' => array( 'John', 'Kyra' ), ); $td = new CFTypeDetector(); -$guessedStructure = $td->toCFType( $structure ); -$plist->add( $guessedStructure ); +$guessedStructure = $td->toCFType($structure); +$plist->add($guessedStructure); /* * Save PList as XML */ -$plist->saveXML( __DIR__.'/example-create-03.xml.plist' ); +$plist->saveXML(__DIR__.'/example-create-03.xml.plist'); /* * Save PList as Binary */ -$plist->saveBinary( __DIR__.'/example-create-03.binary.plist' ); - -?> \ No newline at end of file +$plist->saveBinary(__DIR__.'/example-create-03.binary.plist'); diff --git a/examples/example-create-04.php b/examples/example-create-04.php index d94181f..af0a3fd 100644 --- a/examples/example-create-04.php +++ b/examples/example-create-04.php @@ -49,24 +49,25 @@ namespace CFPropertyList; // just in case... -error_reporting( E_ALL ); -ini_set( 'display_errors', 'on' ); +error_reporting(E_ALL); +ini_set('display_errors', 'on'); /** * Require CFPropertyList */ require_once(__DIR__.'/../vendor/autoload.php'); -class DemoDetector extends CFTypeDetector { +class DemoDetector extends CFTypeDetector +{ - public function toCFType($value) { - if( $value instanceof PListException ) { - return new CFString( $value->getMessage() ); - } - - return parent::toCFType($value); - } + public function toCFType($value) + { + if ($value instanceof PListException) { + return new CFString($value->getMessage()); + } + return parent::toCFType($value); + } } /* @@ -89,45 +90,40 @@ public function toCFType($value) { * Try default detection */ try { - $plist = new CFPropertyList(); - $td = new CFTypeDetector(); - $guessedStructure = $td->toCFType( $structure ); - $plist->add( $guessedStructure ); - $plist->saveXML( __DIR__.'/example-create-04.xml.plist' ); - $plist->saveBinary( __DIR__.'/example-create-04.binary.plist' ); -} -catch( PListException $e ) { - echo 'Normal detection: ', $e->getMessage(), "\n"; + $plist = new CFPropertyList(); + $td = new CFTypeDetector(); + $guessedStructure = $td->toCFType($structure); + $plist->add($guessedStructure); + $plist->saveXML(__DIR__.'/example-create-04.xml.plist'); + $plist->saveBinary(__DIR__.'/example-create-04.binary.plist'); +} catch (PListException $e) { + echo 'Normal detection: ', $e->getMessage(), "\n"; } /* * Try detection by omitting exceptions */ try { - $plist = new CFPropertyList(); - $td = new CFTypeDetector( array('suppressExceptions' => true) ); - $guessedStructure = $td->toCFType( $structure ); - $plist->add( $guessedStructure ); - $plist->saveXML( __DIR__.'/example-create-04.xml.plist' ); - $plist->saveBinary( __DIR__.'/example-create-04.binary.plist' ); -} -catch( PListException $e ) { - echo 'Silent detection: ', $e->getMessage(), "\n"; + $plist = new CFPropertyList(); + $td = new CFTypeDetector(array('suppressExceptions' => true)); + $guessedStructure = $td->toCFType($structure); + $plist->add($guessedStructure); + $plist->saveXML(__DIR__.'/example-create-04.xml.plist'); + $plist->saveBinary(__DIR__.'/example-create-04.binary.plist'); +} catch (PListException $e) { + echo 'Silent detection: ', $e->getMessage(), "\n"; } /* * Try detection with an extended version of CFTypeDetector */ try { - $plist = new CFPropertyList(); - $td = new DemoDetector(); - $guessedStructure = $td->toCFType( $structure ); - $plist->add( $guessedStructure ); - $plist->saveXML( __DIR__.'/example-create-04.xml.plist' ); - $plist->saveBinary( __DIR__.'/example-create-04.binary.plist' ); -} -catch( PListException $e ) { - echo 'User defined detection: ', $e->getMessage(), "\n"; + $plist = new CFPropertyList(); + $td = new DemoDetector(); + $guessedStructure = $td->toCFType($structure); + $plist->add($guessedStructure); + $plist->saveXML(__DIR__.'/example-create-04.xml.plist'); + $plist->saveBinary(__DIR__.'/example-create-04.binary.plist'); +} catch (PListException $e) { + echo 'User defined detection: ', $e->getMessage(), "\n"; } - -?> \ No newline at end of file diff --git a/examples/example-modify-01.php b/examples/example-modify-01.php index f03ca74..f431b72 100644 --- a/examples/example-modify-01.php +++ b/examples/example-modify-01.php @@ -49,8 +49,8 @@ namespace CFPropertyList; // just in case... -error_reporting( E_ALL ); -ini_set( 'display_errors', 'on' ); +error_reporting(E_ALL); +ini_set('display_errors', 'on'); /** * Require CFPropertyList @@ -59,24 +59,19 @@ // load an existing list -$plist = new CFPropertyList( __DIR__.'/sample.xml.plist' ); +$plist = new CFPropertyList(__DIR__.'/sample.xml.plist'); -foreach( $plist->getValue(true) as $key => $value ) -{ - if( $key == "City Of Birth" ) - { - $value->setValue( 'Mars' ); - } +foreach ($plist->getValue(true) as $key => $value) { + if ($key == "City Of Birth") { + $value->setValue('Mars'); + } - if( $value instanceof \Iterator ) - { - // The value is a CFDictionary or CFArray, you may continue down the tree - } + if ($value instanceof \Iterator) { + // The value is a CFDictionary or CFArray, you may continue down the tree + } } // save data -$plist->save( __DIR__.'/modified.plist', CFPropertyList::FORMAT_XML ); - -?> \ No newline at end of file +$plist->save(__DIR__.'/modified.plist', CFPropertyList::FORMAT_XML); diff --git a/examples/example-read-01.php b/examples/example-read-01.php index 38548a3..2e99a6b 100644 --- a/examples/example-read-01.php +++ b/examples/example-read-01.php @@ -49,8 +49,8 @@ namespace CFPropertyList; // just in case... -error_reporting( E_ALL ); -ini_set( 'display_errors', 'on' ); +error_reporting(E_ALL); +ini_set('display_errors', 'on'); /** * Require CFPropertyList @@ -62,14 +62,12 @@ * create a new CFPropertyList instance which loads the sample.plist on construct. * since we know it's an XML file, we can skip format-determination */ -$plist = new CFPropertyList( __DIR__.'/sample.xml.plist', CFPropertyList::FORMAT_XML ); +$plist = new CFPropertyList(__DIR__.'/sample.xml.plist', CFPropertyList::FORMAT_XML); /* * retrieve the array structure of sample.plist and dump to stdout */ echo '
';
-var_dump( $plist->toArray() );
+var_dump($plist->toArray());
 echo '
'; - -?> \ No newline at end of file diff --git a/examples/example-read-02.php b/examples/example-read-02.php index 957dc68..66b4490 100644 --- a/examples/example-read-02.php +++ b/examples/example-read-02.php @@ -49,8 +49,8 @@ namespace CFPropertyList; // just in case... -error_reporting( E_ALL ); -ini_set( 'display_errors', 'on' ); +error_reporting(E_ALL); +ini_set('display_errors', 'on'); /** * Require CFPropertyList @@ -62,16 +62,14 @@ * create a new CFPropertyList instance which loads the sample.plist on construct. * since we know it's a binary file, we can skip format-determination */ -$plist = new CFPropertyList( __DIR__.'/sample.binary.plist', CFPropertyList::FORMAT_BINARY ); +$plist = new CFPropertyList(__DIR__.'/sample.binary.plist', CFPropertyList::FORMAT_BINARY); /* * retrieve the array structure of sample.plist and dump to stdout */ echo '
';
-var_dump( $plist->toArray() );
+var_dump($plist->toArray());
 echo '
'; -$plist->saveBinary( __DIR__.'/sample.binary.plist' ); - -?> \ No newline at end of file +$plist->saveBinary(__DIR__.'/sample.binary.plist'); diff --git a/examples/example-read-03.php b/examples/example-read-03.php index e11fd34..77c2404 100644 --- a/examples/example-read-03.php +++ b/examples/example-read-03.php @@ -49,8 +49,8 @@ namespace CFPropertyList; // just in case... -error_reporting( E_ALL ); -ini_set( 'display_errors', 'on' ); +error_reporting(E_ALL); +ini_set('display_errors', 'on'); /** * Require CFPropertyList @@ -62,16 +62,14 @@ * create a new CFPropertyList instance which loads the sample.plist on construct. * since we know the format, use the automatic format-detection */ -$plist = new CFPropertyList( __DIR__.'/sample.binary.plist' ); +$plist = new CFPropertyList(__DIR__.'/sample.binary.plist'); /* * retrieve the array structure of sample.plist and dump to stdout */ echo '
';
-var_dump( $plist->toArray() );
+var_dump($plist->toArray());
 echo '
'; -$plist->saveBinary( __DIR__.'/sample.binary.plist' ); - -?> \ No newline at end of file +$plist->saveBinary(__DIR__.'/sample.binary.plist'); diff --git a/examples/example-read-04.php b/examples/example-read-04.php index 47c0d9f..6d62559 100644 --- a/examples/example-read-04.php +++ b/examples/example-read-04.php @@ -49,8 +49,8 @@ namespace CFPropertyList; // just in case... -error_reporting( E_ALL ); -ini_set( 'display_errors', 'on' ); +error_reporting(E_ALL); +ini_set('display_errors', 'on'); /** * Require CFPropertyList @@ -71,7 +71,5 @@ */ echo '
';
-var_dump( $plist->toArray() );
+var_dump($plist->toArray());
 echo '
'; - -?> \ No newline at end of file diff --git a/examples/example-read-05.php b/examples/example-read-05.php index 86fae5f..453eadd 100644 --- a/examples/example-read-05.php +++ b/examples/example-read-05.php @@ -49,8 +49,8 @@ namespace CFPropertyList; // just in case... -error_reporting( E_ALL ); -ini_set( 'display_errors', 'on' ); +error_reporting(E_ALL); +ini_set('display_errors', 'on'); /** * Require CFPropertyList @@ -71,7 +71,5 @@ */ echo '
';
-var_dump( $plist->toArray() );
+var_dump($plist->toArray());
 echo '
'; - -?> \ No newline at end of file From 916c1cec1bb06ba74c174e9f7bd47b7aff3da27b Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 20 Apr 2018 15:47:30 +0200 Subject: [PATCH 3/4] docs(header): remove synopsis of package this text is already in README.md Signed-off-by: Thierry Bugier --- examples/example-create-01.php | 7 ------- examples/example-create-02.php | 7 ------- examples/example-create-03.php | 7 ------- examples/example-create-04.php | 7 ------- examples/example-modify-01.php | 7 ------- examples/example-read-01.php | 7 ------- examples/example-read-02.php | 7 ------- examples/example-read-03.php | 7 ------- examples/example-read-04.php | 7 ------- examples/example-read-05.php | 7 ------- examples/example-read-06.php | 7 ------- src/CFPropertyList/CFArray.php | 7 ------- src/CFPropertyList/CFBinaryPropertyList.php | 7 ------- src/CFPropertyList/CFBoolean.php | 7 ------- src/CFPropertyList/CFData.php | 7 ------- src/CFPropertyList/CFDate.php | 7 ------- src/CFPropertyList/CFDictionary.php | 7 ------- src/CFPropertyList/CFNumber.php | 7 ------- src/CFPropertyList/CFPropertyList.php | 7 ------- src/CFPropertyList/CFString.php | 7 ------- src/CFPropertyList/CFType.php | 7 ------- src/CFPropertyList/CFTypeDetector.php | 7 ------- src/CFPropertyList/CFUid.php | 7 ------- src/CFPropertyList/IOException.php | 7 ------- src/CFPropertyList/PListException.php | 7 ------- tests/BinaryParseTest.php | 7 ------- tests/EmptyElementsTest.php | 7 ------- tests/ParseXMLTest.php | 7 ------- tests/WriteBinaryTest.php | 7 ------- tests/WriteXMLTest.php | 7 ------- tests/bootstrap.php | 7 ------- 31 files changed, 217 deletions(-) diff --git a/examples/example-create-01.php b/examples/example-create-01.php index 2cb913e..3cf777f 100644 --- a/examples/example-create-01.php +++ b/examples/example-create-01.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/examples/example-create-02.php b/examples/example-create-02.php index c5c91d8..4b39938 100644 --- a/examples/example-create-02.php +++ b/examples/example-create-02.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/examples/example-create-03.php b/examples/example-create-03.php index 4ae36f9..0299e56 100644 --- a/examples/example-create-03.php +++ b/examples/example-create-03.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/examples/example-create-04.php b/examples/example-create-04.php index af0a3fd..86e61be 100644 --- a/examples/example-create-04.php +++ b/examples/example-create-04.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/examples/example-modify-01.php b/examples/example-modify-01.php index f431b72..e3c2f93 100644 --- a/examples/example-modify-01.php +++ b/examples/example-modify-01.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/examples/example-read-01.php b/examples/example-read-01.php index 2e99a6b..a9638a7 100644 --- a/examples/example-read-01.php +++ b/examples/example-read-01.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/examples/example-read-02.php b/examples/example-read-02.php index 66b4490..c299cee 100644 --- a/examples/example-read-02.php +++ b/examples/example-read-02.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/examples/example-read-03.php b/examples/example-read-03.php index 77c2404..a2609f1 100644 --- a/examples/example-read-03.php +++ b/examples/example-read-03.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/examples/example-read-04.php b/examples/example-read-04.php index 6d62559..2befc2d 100644 --- a/examples/example-read-04.php +++ b/examples/example-read-04.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/examples/example-read-05.php b/examples/example-read-05.php index 453eadd..7e485a0 100644 --- a/examples/example-read-05.php +++ b/examples/example-read-05.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/examples/example-read-06.php b/examples/example-read-06.php index 051295b..ed12b5d 100644 --- a/examples/example-read-06.php +++ b/examples/example-read-06.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFArray.php b/src/CFPropertyList/CFArray.php index 6970ce8..caa2475 100644 --- a/src/CFPropertyList/CFArray.php +++ b/src/CFPropertyList/CFArray.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFBinaryPropertyList.php b/src/CFPropertyList/CFBinaryPropertyList.php index dd78b72..5f48eb6 100644 --- a/src/CFPropertyList/CFBinaryPropertyList.php +++ b/src/CFPropertyList/CFBinaryPropertyList.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFBoolean.php b/src/CFPropertyList/CFBoolean.php index b5c6597..f4cd87b 100644 --- a/src/CFPropertyList/CFBoolean.php +++ b/src/CFPropertyList/CFBoolean.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFData.php b/src/CFPropertyList/CFData.php index 23c74b5..5dfbe51 100644 --- a/src/CFPropertyList/CFData.php +++ b/src/CFPropertyList/CFData.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFDate.php b/src/CFPropertyList/CFDate.php index c174426..5b74ef4 100644 --- a/src/CFPropertyList/CFDate.php +++ b/src/CFPropertyList/CFDate.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFDictionary.php b/src/CFPropertyList/CFDictionary.php index 80aa487..2ab5741 100644 --- a/src/CFPropertyList/CFDictionary.php +++ b/src/CFPropertyList/CFDictionary.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFNumber.php b/src/CFPropertyList/CFNumber.php index f2b6518..dd06590 100644 --- a/src/CFPropertyList/CFNumber.php +++ b/src/CFPropertyList/CFNumber.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFPropertyList.php b/src/CFPropertyList/CFPropertyList.php index d6adbed..42bde66 100644 --- a/src/CFPropertyList/CFPropertyList.php +++ b/src/CFPropertyList/CFPropertyList.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFString.php b/src/CFPropertyList/CFString.php index 74d98be..8f4800a 100644 --- a/src/CFPropertyList/CFString.php +++ b/src/CFPropertyList/CFString.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFType.php b/src/CFPropertyList/CFType.php index 2332dc6..10517c0 100644 --- a/src/CFPropertyList/CFType.php +++ b/src/CFPropertyList/CFType.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFTypeDetector.php b/src/CFPropertyList/CFTypeDetector.php index e3245b5..b8f8bf6 100644 --- a/src/CFPropertyList/CFTypeDetector.php +++ b/src/CFPropertyList/CFTypeDetector.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/CFUid.php b/src/CFPropertyList/CFUid.php index ce02b15..b991eaa 100644 --- a/src/CFPropertyList/CFUid.php +++ b/src/CFPropertyList/CFUid.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/IOException.php b/src/CFPropertyList/IOException.php index f052ed1..4f43c8c 100644 --- a/src/CFPropertyList/IOException.php +++ b/src/CFPropertyList/IOException.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/CFPropertyList/PListException.php b/src/CFPropertyList/PListException.php index d234a6f..db1abe6 100644 --- a/src/CFPropertyList/PListException.php +++ b/src/CFPropertyList/PListException.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/tests/BinaryParseTest.php b/tests/BinaryParseTest.php index 5c77326..7ed1fcc 100644 --- a/tests/BinaryParseTest.php +++ b/tests/BinaryParseTest.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/tests/EmptyElementsTest.php b/tests/EmptyElementsTest.php index 76e4201..634daed 100644 --- a/tests/EmptyElementsTest.php +++ b/tests/EmptyElementsTest.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/tests/ParseXMLTest.php b/tests/ParseXMLTest.php index 54f1d42..f05e874 100644 --- a/tests/ParseXMLTest.php +++ b/tests/ParseXMLTest.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/tests/WriteBinaryTest.php b/tests/WriteBinaryTest.php index 6d454b1..5bf3503 100644 --- a/tests/WriteBinaryTest.php +++ b/tests/WriteBinaryTest.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/tests/WriteXMLTest.php b/tests/WriteXMLTest.php index 66d108b..e73f8b3 100644 --- a/tests/WriteXMLTest.php +++ b/tests/WriteXMLTest.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/tests/bootstrap.php b/tests/bootstrap.php index c001a1c..afba980 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -4,13 +4,6 @@ * * This file is part of CFPropertyList. * - * The PHP implementation of Apple's PropertyList can handle XML PropertyLists - * as well as binary PropertyLists. It offers functionality to easily convert - * data between worlds, e.g. recalculating timestamps from unix epoch to apple - * epoch and vice versa. A feature to automagically create (guess) the plist - * structure from a normal PHP data structure will help you dump your data to - * plist in no time. - * * Copyright (c) 2018 Teclib' * * Permission is hereby granted, free of charge, to any person obtaining a copy From f0a501d7c27532a4a6e59d360632f2c58bb45796 Mon Sep 17 00:00:00 2001 From: Thierry Bugier Date: Fri, 20 Apr 2018 15:48:31 +0200 Subject: [PATCH 4/4] docs(header): fix package name Signed-off-by: Thierry Bugier --- examples/example-create-01.php | 2 +- examples/example-create-02.php | 2 +- examples/example-create-03.php | 2 +- examples/example-create-04.php | 2 +- examples/example-modify-01.php | 2 +- examples/example-read-01.php | 2 +- examples/example-read-02.php | 2 +- examples/example-read-03.php | 2 +- examples/example-read-04.php | 2 +- examples/example-read-05.php | 2 +- examples/example-read-06.php | 2 +- src/CFPropertyList/CFArray.php | 2 +- src/CFPropertyList/CFBinaryPropertyList.php | 2 +- src/CFPropertyList/CFBoolean.php | 2 +- src/CFPropertyList/CFData.php | 2 +- src/CFPropertyList/CFDate.php | 2 +- src/CFPropertyList/CFDictionary.php | 2 +- src/CFPropertyList/CFNumber.php | 2 +- src/CFPropertyList/CFPropertyList.php | 2 +- src/CFPropertyList/CFString.php | 2 +- src/CFPropertyList/CFType.php | 2 +- src/CFPropertyList/CFTypeDetector.php | 2 +- src/CFPropertyList/CFUid.php | 2 +- src/CFPropertyList/IOException.php | 2 +- src/CFPropertyList/PListException.php | 2 +- tests/BinaryParseTest.php | 2 +- tests/EmptyElementsTest.php | 2 +- tests/ParseXMLTest.php | 2 +- tests/WriteBinaryTest.php | 2 +- tests/WriteXMLTest.php | 2 +- tests/bootstrap.php | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/examples/example-create-01.php b/examples/example-create-01.php index 3cf777f..3396d78 100644 --- a/examples/example-create-01.php +++ b/examples/example-create-01.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/examples/example-create-02.php b/examples/example-create-02.php index 4b39938..fa35c9b 100644 --- a/examples/example-create-02.php +++ b/examples/example-create-02.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/examples/example-create-03.php b/examples/example-create-03.php index 0299e56..283c43d 100644 --- a/examples/example-create-03.php +++ b/examples/example-create-03.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/examples/example-create-04.php b/examples/example-create-04.php index 86e61be..245604b 100644 --- a/examples/example-create-04.php +++ b/examples/example-create-04.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/examples/example-modify-01.php b/examples/example-modify-01.php index e3c2f93..0eb6f5f 100644 --- a/examples/example-modify-01.php +++ b/examples/example-modify-01.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/examples/example-read-01.php b/examples/example-read-01.php index a9638a7..bb81917 100644 --- a/examples/example-read-01.php +++ b/examples/example-read-01.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/examples/example-read-02.php b/examples/example-read-02.php index c299cee..46dbf92 100644 --- a/examples/example-read-02.php +++ b/examples/example-read-02.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/examples/example-read-03.php b/examples/example-read-03.php index a2609f1..ea38b2f 100644 --- a/examples/example-read-03.php +++ b/examples/example-read-03.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/examples/example-read-04.php b/examples/example-read-04.php index 2befc2d..a51f292 100644 --- a/examples/example-read-04.php +++ b/examples/example-read-04.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/examples/example-read-05.php b/examples/example-read-05.php index 7e485a0..d855062 100644 --- a/examples/example-read-05.php +++ b/examples/example-read-05.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/examples/example-read-06.php b/examples/example-read-06.php index ed12b5d..2645df2 100644 --- a/examples/example-read-06.php +++ b/examples/example-read-06.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Virtual Jasper * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/src/CFPropertyList/CFArray.php b/src/CFPropertyList/CFArray.php index caa2475..7a37f4b 100644 --- a/src/CFPropertyList/CFArray.php +++ b/src/CFPropertyList/CFArray.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/CFBinaryPropertyList.php b/src/CFPropertyList/CFBinaryPropertyList.php index 5f48eb6..0b774a4 100644 --- a/src/CFPropertyList/CFBinaryPropertyList.php +++ b/src/CFPropertyList/CFBinaryPropertyList.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/CFBoolean.php b/src/CFPropertyList/CFBoolean.php index f4cd87b..f61c4bb 100644 --- a/src/CFPropertyList/CFBoolean.php +++ b/src/CFPropertyList/CFBoolean.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/CFData.php b/src/CFPropertyList/CFData.php index 5dfbe51..c0b4bb4 100644 --- a/src/CFPropertyList/CFData.php +++ b/src/CFPropertyList/CFData.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/CFDate.php b/src/CFPropertyList/CFDate.php index 5b74ef4..c81b6f0 100644 --- a/src/CFPropertyList/CFDate.php +++ b/src/CFPropertyList/CFDate.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/CFDictionary.php b/src/CFPropertyList/CFDictionary.php index 2ab5741..94494de 100644 --- a/src/CFPropertyList/CFDictionary.php +++ b/src/CFPropertyList/CFDictionary.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/CFNumber.php b/src/CFPropertyList/CFNumber.php index dd06590..de611c4 100644 --- a/src/CFPropertyList/CFNumber.php +++ b/src/CFPropertyList/CFNumber.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/CFPropertyList.php b/src/CFPropertyList/CFPropertyList.php index 42bde66..6ade6bc 100644 --- a/src/CFPropertyList/CFPropertyList.php +++ b/src/CFPropertyList/CFPropertyList.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/CFString.php b/src/CFPropertyList/CFString.php index 8f4800a..a1908b3 100644 --- a/src/CFPropertyList/CFString.php +++ b/src/CFPropertyList/CFString.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/CFType.php b/src/CFPropertyList/CFType.php index 10517c0..00d275b 100644 --- a/src/CFPropertyList/CFType.php +++ b/src/CFPropertyList/CFType.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/CFTypeDetector.php b/src/CFPropertyList/CFTypeDetector.php index b8f8bf6..d62438b 100644 --- a/src/CFPropertyList/CFTypeDetector.php +++ b/src/CFPropertyList/CFTypeDetector.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/CFUid.php b/src/CFPropertyList/CFUid.php index b991eaa..f88586a 100644 --- a/src/CFPropertyList/CFUid.php +++ b/src/CFPropertyList/CFUid.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/IOException.php b/src/CFPropertyList/IOException.php index 4f43c8c..043a344 100644 --- a/src/CFPropertyList/IOException.php +++ b/src/CFPropertyList/IOException.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/src/CFPropertyList/PListException.php b/src/CFPropertyList/PListException.php index db1abe6..62fe61a 100644 --- a/src/CFPropertyList/PListException.php +++ b/src/CFPropertyList/PListException.php @@ -28,7 +28,7 @@ * @author Rodney Rehm * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/tests/BinaryParseTest.php b/tests/BinaryParseTest.php index 7ed1fcc..7e586da 100644 --- a/tests/BinaryParseTest.php +++ b/tests/BinaryParseTest.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/tests/EmptyElementsTest.php b/tests/EmptyElementsTest.php index 634daed..cc7c34c 100644 --- a/tests/EmptyElementsTest.php +++ b/tests/EmptyElementsTest.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author maciej.majewski * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/tests/ParseXMLTest.php b/tests/ParseXMLTest.php index f05e874..8aa09ba 100644 --- a/tests/ParseXMLTest.php +++ b/tests/ParseXMLTest.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Christian Kruse * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * ------------------------------------------------------------------------------ diff --git a/tests/WriteBinaryTest.php b/tests/WriteBinaryTest.php index 5bf3503..21d54e9 100644 --- a/tests/WriteBinaryTest.php +++ b/tests/WriteBinaryTest.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Jocelyn Badgley * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/tests/WriteXMLTest.php b/tests/WriteXMLTest.php index e73f8b3..6d5e970 100644 --- a/tests/WriteXMLTest.php +++ b/tests/WriteXMLTest.php @@ -27,7 +27,7 @@ * ------------------------------------------------------------------------------ * @author Jocelyn Badgley * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists diff --git a/tests/bootstrap.php b/tests/bootstrap.php index afba980..42a9f22 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -29,7 +29,7 @@ * @author Christian Kruse * @author Thierry Bugier * @copyright Copyright © 2018 Teclib - * @package plist + * @package CFPropertyList * @license MIT * @link https://github.com/TECLIB/CFPropertyList/ * @link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists