first commit
This commit is contained in:
		
						commit
						1d0992e61b
					
				
							
								
								
									
										68
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										68
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,68 @@ | |||
| # Podcast Feed Parser | ||||
| 
 | ||||
| A PHP library for parsing Podcast XML/RSS feeds. | ||||
| 
 | ||||
| ## Features | ||||
| 
 | ||||
| * Get channel metadata, such as the title and description | ||||
| * Retrieve a list of the episodes | ||||
| * Supports iTunes metadata such as categories | ||||
| * Get artwork and media files  | ||||
| * Sort episodes by their publication date, episode number or split into seasons | ||||
| 
 | ||||
| ## Installation | ||||
| 
 | ||||
| ```bash | ||||
| composer require lukaswhite/php-feed-parser | ||||
| ``` | ||||
| 
 | ||||
| ## Usage | ||||
| 
 | ||||
| ```php | ||||
| use Lukaswhite\PodcastFeedParser\Parser; | ||||
| 
 | ||||
| $parser = Parser(); | ||||
| $parser->load('/path/to/feed/feed.rss'); | ||||
| $podcast = $parser->run(); | ||||
| ``` | ||||
| 
 | ||||
| or | ||||
| 
 | ||||
| ```php | ||||
| $parser = Parser(); | ||||
| $parser->setContent(/** raw content */); | ||||
| $podcast = $parser->run(); | ||||
| ``` | ||||
| 
 | ||||
| The `run()` method returns an instance of the `Podcast` class, on which the `getEpisodes()` method returns a collection of the podcast episodes. | ||||
| 
 | ||||
| ## Simple Example | ||||
| 
 | ||||
| This only shows a limited selection of the available fields; you'll find a [complete list here](https://htmlpreview.github.io/?https://github.com/lukaswhite/podcast-feed-parser/blob/main/docs/html/classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml). | ||||
| 
 | ||||
| ```php | ||||
| $podcast = $parser->run(); | ||||
| $id = $db->insert( | ||||
|     'podcasts', | ||||
|     [ | ||||
|         'title' =>  $podcast->getTitle(), | ||||
|         'description' => $podcast->getDescription(), | ||||
|         'artwork' => $podcast->getArtwork()->getUri(), | ||||
|     ] | ||||
| ); | ||||
| 
 | ||||
| foreach($podcast->getEpisodes() as $episode) { | ||||
|     $db->insert( | ||||
|         'episodes', | ||||
|         [ | ||||
|             'podcast_id' => $id, | ||||
|             'guid' => $episode->getGuid(), | ||||
|             'title' =>  $episode->getTitle(), | ||||
|             'description' => $episode->getDescription(), | ||||
|             'media_uri' => $podcast->getMedia()->getUri(), | ||||
|         ] | ||||
|     ); | ||||
| } | ||||
| 
 | ||||
| return $podcast->getEpisodes()->mostRecent(); | ||||
| ```  | ||||
							
								
								
									
										25
									
								
								composer.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								composer.json
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,25 @@ | |||
| { | ||||
|     "name": "lukaswhite/podcast-feed-parser", | ||||
|     "description": "A PHP library for parsing podcast feeds", | ||||
|     "type": "library", | ||||
|     "license": "MIT", | ||||
|     "authors": [ | ||||
|         { | ||||
|             "name": "Lukas White", | ||||
|             "email": "hello@lukaswhite.com" | ||||
|         } | ||||
|     ], | ||||
|     "require": { | ||||
|         "simplepie/simplepie": "^1.5", | ||||
|         "lukaswhite/itunes-categories": "^0.0.1" | ||||
|     }, | ||||
|     "require-dev": { | ||||
|         "phpunit/phpunit": "^8.5", | ||||
|         "phpunit/php-code-coverage": "^7.0.7" | ||||
|     }, | ||||
|     "autoload": { | ||||
|         "psr-4": { | ||||
|             "Lukaswhite\\PodcastFeedParser\\": "src/" | ||||
|         } | ||||
|     } | ||||
| } | ||||
							
								
								
									
										213
									
								
								docs/html/classes.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										213
									
								
								docs/html/classes.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,213 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Overview</title> | ||||
|     <link rel="stylesheet" type="text/css" href="css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <h1>Classes</h1> | ||||
|       <div class="container"> | ||||
|         <h2 id="">\</h2> | ||||
|         <table class="styled"> | ||||
|           <thead> | ||||
|             <tr> | ||||
|               <th>Name</th> | ||||
|               <th>Description</th> | ||||
|               <th/> | ||||
|             </tr> | ||||
|           </thead> | ||||
|           <tbody> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Exception.xhtml">Exception</a> | ||||
|               </td> | ||||
|               <td> | ||||
|                 <span class="unavailable">No description available</span> | ||||
|               </td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|           </tbody> | ||||
|         </table> | ||||
|       </div> | ||||
|       <div class="container"> | ||||
|         <h2 id="Lukaswhite_PodcastFeedParser">\Lukaswhite\PodcastFeedParser</h2> | ||||
|         <table class="styled"> | ||||
|           <thead> | ||||
|             <tr> | ||||
|               <th>Name</th> | ||||
|               <th>Description</th> | ||||
|               <th/> | ||||
|             </tr> | ||||
|           </thead> | ||||
|           <tbody> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Lukaswhite_PodcastFeedParser_Artwork.xhtml">Artwork</a> | ||||
|               </td> | ||||
|               <td> | ||||
|                 <span class="unavailable">No description available</span> | ||||
|               </td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Lukaswhite_PodcastFeedParser_Category.xhtml">Category</a> | ||||
|               </td> | ||||
|               <td> | ||||
|                 <span class="unavailable">No description available</span> | ||||
|               </td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|               </td> | ||||
|               <td> | ||||
|                 <span class="unavailable">No description available</span> | ||||
|               </td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Lukaswhite_PodcastFeedParser_Link.xhtml">Link</a> | ||||
|               </td> | ||||
|               <td> | ||||
|                 <span class="unavailable">No description available</span> | ||||
|               </td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Lukaswhite_PodcastFeedParser_Media.xhtml">Media</a> | ||||
|               </td> | ||||
|               <td> | ||||
|                 <span class="unavailable">No description available</span> | ||||
|               </td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Lukaswhite_PodcastFeedParser_Owner.xhtml">Owner</a> | ||||
|               </td> | ||||
|               <td> | ||||
|                 <span class="unavailable">No description available</span> | ||||
|               </td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Lukaswhite_PodcastFeedParser_Parser.xhtml">Parser</a> | ||||
|               </td> | ||||
|               <td>Class Parser</td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|               </td> | ||||
|               <td> | ||||
|                 <span class="unavailable">No description available</span> | ||||
|               </td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|           </tbody> | ||||
|         </table> | ||||
|       </div> | ||||
|       <div class="container"> | ||||
|         <h2 id="Lukaswhite_PodcastFeedParser_Exceptions">\Lukaswhite\PodcastFeedParser\Exceptions</h2> | ||||
|         <table class="styled"> | ||||
|           <thead> | ||||
|             <tr> | ||||
|               <th>Name</th> | ||||
|               <th>Description</th> | ||||
|               <th/> | ||||
|             </tr> | ||||
|           </thead> | ||||
|           <tbody> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Lukaswhite_PodcastFeedParser_Exceptions_FileNotFoundException.xhtml">FileNotFoundException</a> | ||||
|               </td> | ||||
|               <td> | ||||
|                 <span class="unavailable">No description available</span> | ||||
|               </td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Lukaswhite_PodcastFeedParser_Exceptions_InvalidXmlException.xhtml">InvalidXmlException</a> | ||||
|               </td> | ||||
|               <td> | ||||
|                 <span class="unavailable">No description available</span> | ||||
|               </td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|           </tbody> | ||||
|         </table> | ||||
|       </div> | ||||
|       <div class="container"> | ||||
|         <h2 id="Lukaswhite_PodcastFeedParser_Rawvoice">\Lukaswhite\PodcastFeedParser\Rawvoice</h2> | ||||
|         <table class="styled"> | ||||
|           <thead> | ||||
|             <tr> | ||||
|               <th>Name</th> | ||||
|               <th>Description</th> | ||||
|               <th/> | ||||
|             </tr> | ||||
|           </thead> | ||||
|           <tbody> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="classes/Lukaswhite_PodcastFeedParser_Rawvoice_Subscribe.xhtml">Subscribe</a> | ||||
|               </td> | ||||
|               <td>Class Subscribe</td> | ||||
|               <td class="testresult-EMPTY">EMPTY | ||||
|             </td> | ||||
|             </tr> | ||||
|           </tbody> | ||||
|         </table> | ||||
|       </div> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										134
									
								
								docs/html/classes/Exception.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										134
									
								
								docs/html/classes/Exception.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,134 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Exception</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator">Exception</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>\</small>Exception</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class Exception | ||||
|             {<br/><ul class="none"><li>// members</li><li>protected  <a href="#members">$message</a>; | ||||
|                     </li><li>protected  <a href="#members">$code</a>; | ||||
|                     </li><li>protected  <a href="#members">$file</a>; | ||||
|                     </li><li>protected  <a href="#members">$line</a>; | ||||
|                     </li></ul><ul class="none"><li>// methods</li><li>public void <a title="Exception" href="../classes/Exception/__construct.xhtml">__construct</a>() | ||||
|                     </li><li>public final string <a title="Exception" href="../classes/Exception/getMessage.xhtml">getMessage</a>() | ||||
|                     </li><li>public final Throwable <a title="Exception" href="../classes/Exception/getPrevious.xhtml">getPrevious</a>() | ||||
|                     </li><li>public final mixed <a title="Exception" href="../classes/Exception/getCode.xhtml">getCode</a>() | ||||
|                     </li><li>public final string <a title="Exception" href="../classes/Exception/getFile.xhtml">getFile</a>() | ||||
|                     </li><li>public final int <a title="Exception" href="../classes/Exception/getLine.xhtml">getLine</a>() | ||||
|                     </li><li>public final array <a title="Exception" href="../classes/Exception/getTrace.xhtml">getTrace</a>() | ||||
|                     </li><li>public final string <a title="Exception" href="../classes/Exception/getTraceAsString.xhtml">getTraceAsString</a>() | ||||
|                     </li><li>public string <a title="Exception" href="../classes/Exception/__toString.xhtml">__toString</a>() | ||||
|                     </li><li> final void <a title="Exception" href="../classes/Exception/__clone.xhtml">__clone</a>() | ||||
|                     </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="code"><strong>$code</strong> | ||||
|                 — | ||||
|                 int<br/><span class="indent">The exception code</span></li> | ||||
|             <li id="file"><strong>$file</strong> | ||||
|                 — | ||||
|                 string<br/><span class="indent">The filename where the exception was created</span></li> | ||||
|             <li id="line"><strong>$line</strong> | ||||
|                 — | ||||
|                 int<br/><span class="indent">The line where the exception was created</span></li> | ||||
|             <li id="message"><strong>$message</strong> | ||||
|                 — | ||||
|                 string<br/><span class="indent">The exception message</span></li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="__construct"><a title="Exception" href="../classes/Exception/__construct.xhtml">__construct()</a> | ||||
|                 — Construct the exception</li> | ||||
|             <li id="__toString"><a title="Exception" href="../classes/Exception/__toString.xhtml">__toString()</a> | ||||
|                 — String representation of the exception</li> | ||||
|             <li id="getCode"><a title="Exception" href="../classes/Exception/getCode.xhtml">getCode()</a> | ||||
|                 — Gets the Exception code</li> | ||||
|             <li id="getFile"><a title="Exception" href="../classes/Exception/getFile.xhtml">getFile()</a> | ||||
|                 — Gets the file in which the exception was created</li> | ||||
|             <li id="getLine"><a title="Exception" href="../classes/Exception/getLine.xhtml">getLine()</a> | ||||
|                 — Gets the line in which the exception was created</li> | ||||
|             <li id="getMessage"><a title="Exception" href="../classes/Exception/getMessage.xhtml">getMessage()</a> | ||||
|                 — Gets the Exception message</li> | ||||
|             <li id="getPrevious"><a title="Exception" href="../classes/Exception/getPrevious.xhtml">getPrevious()</a> | ||||
|                 — Returns previous Exception</li> | ||||
|             <li id="getTrace"><a title="Exception" href="../classes/Exception/getTrace.xhtml">getTrace()</a> | ||||
|                 — Gets the stack trace</li> | ||||
|             <li id="getTraceAsString"><a title="Exception" href="../classes/Exception/getTraceAsString.xhtml">getTraceAsString()</a> | ||||
|                 — Gets the stack trace as a string</li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										87
									
								
								docs/html/classes/Exception/__clone.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										87
									
								
								docs/html/classes/Exception/__clone.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,87 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Exception::__clone</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#"/> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Exception" href="../../classes/Exception.xhtml">Exception</a> | ||||
|           </li> | ||||
|           <li class="separator">__clone</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Exception::</small>__clone</h1> | ||||
|         <h4>Clone the exception</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code> function __clone() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>void</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										110
									
								
								docs/html/classes/Exception/__construct.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										110
									
								
								docs/html/classes/Exception/__construct.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,110 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Exception::__construct</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#"/> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Exception" href="../../classes/Exception.xhtml">Exception</a> | ||||
|           </li> | ||||
|           <li class="separator">__construct</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Exception::</small>__construct</h1> | ||||
|         <h4>Construct the exception</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function __construct(string | ||||
|         $message, | ||||
|             int | ||||
|         $code, | ||||
|             <a title="" href="../../classes/.xhtml"/> | ||||
|         $previous ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$message</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|           <dt><code>$code</code> | ||||
|                 — | ||||
|                 int</dt> | ||||
|           <dd/> | ||||
|           <dt><code>$previous</code> | ||||
|                 — | ||||
|                 <a title="" href="../../classes/.xhtml"/></dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>void</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										87
									
								
								docs/html/classes/Exception/__toString.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										87
									
								
								docs/html/classes/Exception/__toString.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,87 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Exception::__toString</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#"/> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Exception" href="../../classes/Exception.xhtml">Exception</a> | ||||
|           </li> | ||||
|           <li class="separator">__toString</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Exception::</small>__toString</h1> | ||||
|         <h4>String representation of the exception</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function __toString() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										87
									
								
								docs/html/classes/Exception/getCode.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										87
									
								
								docs/html/classes/Exception/getCode.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,87 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Exception::getCode</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#"/> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Exception" href="../../classes/Exception.xhtml">Exception</a> | ||||
|           </li> | ||||
|           <li class="separator">getCode</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Exception::</small>getCode</h1> | ||||
|         <h4>Gets the Exception code</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getCode() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>mixed</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										87
									
								
								docs/html/classes/Exception/getFile.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										87
									
								
								docs/html/classes/Exception/getFile.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,87 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Exception::getFile</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#"/> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Exception" href="../../classes/Exception.xhtml">Exception</a> | ||||
|           </li> | ||||
|           <li class="separator">getFile</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Exception::</small>getFile</h1> | ||||
|         <h4>Gets the file in which the exception was created</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getFile() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										87
									
								
								docs/html/classes/Exception/getLine.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										87
									
								
								docs/html/classes/Exception/getLine.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,87 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Exception::getLine</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#"/> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Exception" href="../../classes/Exception.xhtml">Exception</a> | ||||
|           </li> | ||||
|           <li class="separator">getLine</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Exception::</small>getLine</h1> | ||||
|         <h4>Gets the line in which the exception was created</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getLine() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>int</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										87
									
								
								docs/html/classes/Exception/getMessage.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										87
									
								
								docs/html/classes/Exception/getMessage.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,87 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Exception::getMessage</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#"/> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Exception" href="../../classes/Exception.xhtml">Exception</a> | ||||
|           </li> | ||||
|           <li class="separator">getMessage</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Exception::</small>getMessage</h1> | ||||
|         <h4>Gets the Exception message</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getMessage() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										87
									
								
								docs/html/classes/Exception/getPrevious.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										87
									
								
								docs/html/classes/Exception/getPrevious.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,87 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Exception::getPrevious</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#"/> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Exception" href="../../classes/Exception.xhtml">Exception</a> | ||||
|           </li> | ||||
|           <li class="separator">getPrevious</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Exception::</small>getPrevious</h1> | ||||
|         <h4>Returns previous Exception</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getPrevious() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Throwable</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										87
									
								
								docs/html/classes/Exception/getTrace.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										87
									
								
								docs/html/classes/Exception/getTrace.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,87 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Exception::getTrace</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#"/> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Exception" href="../../classes/Exception.xhtml">Exception</a> | ||||
|           </li> | ||||
|           <li class="separator">getTrace</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Exception::</small>getTrace</h1> | ||||
|         <h4>Gets the stack trace</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getTrace() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>array</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										87
									
								
								docs/html/classes/Exception/getTraceAsString.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										87
									
								
								docs/html/classes/Exception/getTraceAsString.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,87 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Exception::getTraceAsString</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#"/> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Exception" href="../../classes/Exception.xhtml">Exception</a> | ||||
|           </li> | ||||
|           <li class="separator">getTraceAsString</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Exception::</small>getTraceAsString</h1> | ||||
|         <h4>Gets the stack trace as a string</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getTraceAsString() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										120
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Artwork.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										120
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Artwork.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,120 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Artwork</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator">Artwork</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#hierarchy">Hierarchy</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Artwork.php.xhtml#line7">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\</small>Artwork</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class Artwork | ||||
|             {<br/><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasUri">HasUri</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri/getUri.xhtml">getUri</a>() | ||||
|                         </li><li>public HasUri <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri/setUri.xhtml">setUri</a>() | ||||
|                         </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="hierarchy">Hierarchy</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>Uses</h4> | ||||
|           <ul> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasUri</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="uri"><strong>$uri</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasUri</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getUri"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri/getUri.xhtml">getUri()</a> | ||||
|             </li> | ||||
|             <li id="setUri"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri/setUri.xhtml">setUri()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										155
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Category.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										155
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Category.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,155 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Category</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator">Category</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#constants">Constants</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Category.php.xhtml#line5">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\</small>Category</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class Category | ||||
|             {<br/><ul class="none"><li>// constants</li><li>const ITUNES = 'itunes';</li><li>const GOOGLE_PLAY = 'googleplay';</li></ul><ul class="none"><li>// members</li><li>protected  <a href="#members">$name</a>; | ||||
|                     </li><li>protected  <a href="#members">$type</a>; | ||||
|                     </li><li>protected array <a href="#members">$subCategories</a> = | ||||
|                         ; | ||||
|                     </li></ul><ul class="none"><li>// methods</li><li>public string <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/getName.xhtml">getName</a>() | ||||
|                     </li><li>public Category <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/setName.xhtml">setName</a>() | ||||
|                     </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/getType.xhtml">getType</a>() | ||||
|                     </li><li>public Category <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/setType.xhtml">setType</a>() | ||||
|                     </li><li>public array <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/getSubCategories.xhtml">getSubCategories</a>() | ||||
|                     </li><li>public <span title="Category">Category</span> <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/addSubCategory.xhtml">addSubCategory</a>() | ||||
|                     </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="constants">Constants</h2> | ||||
|         <table class="styled"> | ||||
|           <thead> | ||||
|             <tr> | ||||
|               <th>Name</th> | ||||
|               <th>Value</th> | ||||
|             </tr> | ||||
|           </thead> | ||||
|           <tbody> | ||||
|             <tr> | ||||
|               <td id="ITUNES">ITUNES</td> | ||||
|               <td>'itunes'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="GOOGLE_PLAY">GOOGLE_PLAY</td> | ||||
|               <td>'googleplay'</td> | ||||
|             </tr> | ||||
|           </tbody> | ||||
|         </table> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="name"><strong>$name</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="subCategories"><strong>$subCategories</strong> | ||||
|                 — | ||||
|                 array</li> | ||||
|             <li id="type"><strong>$type</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="addSubCategory"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/addSubCategory.xhtml">addSubCategory()</a> | ||||
|             </li> | ||||
|             <li id="getName"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/getName.xhtml">getName()</a> | ||||
|             </li> | ||||
|             <li id="getSubCategories"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/getSubCategories.xhtml">getSubCategories()</a> | ||||
|             </li> | ||||
|             <li id="getType"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/getType.xhtml">getType()</a> | ||||
|             </li> | ||||
|             <li id="setName"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/setName.xhtml">setName()</a> | ||||
|             </li> | ||||
|             <li id="setType"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Category" href="../classes/Lukaswhite_PodcastFeedParser_Category/setType.xhtml">setType()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Category::addSubCategory</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Category" href="../../classes/Lukaswhite_PodcastFeedParser_Category.xhtml">Category</a> | ||||
|           </li> | ||||
|           <li class="separator">addSubCategory</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Category.php.xhtml#line73">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Category::</small>addSubCategory</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function addSubCategory(<a title="Lukaswhite\PodcastFeedParser\Category" href="../../classes/Lukaswhite_PodcastFeedParser_Category.xhtml">Category</a> | ||||
|         $subCategory ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$subCategory</code> | ||||
|                 — | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Category" href="../../classes/Lukaswhite_PodcastFeedParser_Category.xhtml">Lukaswhite\PodcastFeedParser\Category</a></dt> | ||||
|           <dd><br/><br/><br/>      </dd> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Category</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Category::getName</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Category" href="../../classes/Lukaswhite_PodcastFeedParser_Category.xhtml">Category</a> | ||||
|           </li> | ||||
|           <li class="separator">getName</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Category.php.xhtml#line28">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Category::</small>getName</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getName() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Category::getSubCategories</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Category" href="../../classes/Lukaswhite_PodcastFeedParser_Category.xhtml">Category</a> | ||||
|           </li> | ||||
|           <li class="separator">getSubCategories</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Category.php.xhtml#line64">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Category::</small>getSubCategories</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getSubCategories() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>array</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Category::getType</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Category" href="../../classes/Lukaswhite_PodcastFeedParser_Category.xhtml">Category</a> | ||||
|           </li> | ||||
|           <li class="separator">getType</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Category.php.xhtml#line46">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Category::</small>getType</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getType() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Category::setName</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Category" href="../../classes/Lukaswhite_PodcastFeedParser_Category.xhtml">Category</a> | ||||
|           </li> | ||||
|           <li class="separator">setName</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Category.php.xhtml#line37">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Category::</small>setName</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setName(string | ||||
|         $name ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$name</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Category</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Category::setType</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Category" href="../../classes/Lukaswhite_PodcastFeedParser_Category.xhtml">Category</a> | ||||
|           </li> | ||||
|           <li class="separator">setType</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Category.php.xhtml#line55">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Category::</small>setType</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setType(string | ||||
|         $type ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$type</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Category</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										278
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Episode.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										278
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Episode.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,278 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator">Episode</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#hierarchy">Hierarchy</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Episode.php.xhtml#line11">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\</small>Episode</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class Episode | ||||
|             {<br/><ul class="none"><li>// members</li><li>protected  <a href="#members">$guid</a>; | ||||
|                     </li><li>protected  <a href="#members">$type</a>; | ||||
|                     </li><li>protected  <a href="#members">$episodeNumber</a>; | ||||
|                     </li><li>protected  <a href="#members">$season</a>; | ||||
|                     </li><li>protected <span title="Lukaswhite\PodcastFeedParser\Media">Media</span> <a href="#members">$media</a>; | ||||
|                     </li><li>protected <span title="\DateTime">DateTime</span> <a href="#members">$publishedDate</a>; | ||||
|                     </li></ul><ul class="none"><li>// methods</li><li>public string <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getGuid.xhtml">getGuid</a>() | ||||
|                     </li><li>public Episode <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setGuid.xhtml">setGuid</a>() | ||||
|                     </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getType.xhtml">getType</a>() | ||||
|                     </li><li>public Episode <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setType.xhtml">setType</a>() | ||||
|                     </li><li>public int <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getEpisodeNumber.xhtml">getEpisodeNumber</a>() | ||||
|                     </li><li>public Episode <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setEpisodeNumber.xhtml">setEpisodeNumber</a>() | ||||
|                     </li><li>public int <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getSeason.xhtml">getSeason</a>() | ||||
|                     </li><li>public Episode <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setSeason.xhtml">setSeason</a>() | ||||
|                     </li><li>public Media <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getMedia.xhtml">getMedia</a>() | ||||
|                     </li><li>public Episode <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setMedia.xhtml">setMedia</a>() | ||||
|                     </li><li>public DateTime <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getPublishedDate.xhtml">getPublishedDate</a>() | ||||
|                     </li><li>public Episode <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setPublishedDate.xhtml">setPublishedDate</a>() | ||||
|                     </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasTitles">HasTitles</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/getTitle.xhtml">getTitle</a>() | ||||
|                         </li><li>public HasTitles <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/setTitle.xhtml">setTitle</a>() | ||||
|                         </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/getSubtitle.xhtml">getSubtitle</a>() | ||||
|                         </li><li>public HasTitles <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/setSubtitle.xhtml">setSubtitle</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasDescription">HasDescription</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription/getDescription.xhtml">getDescription</a>() | ||||
|                         </li><li>public HasDescription <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription/setDescription.xhtml">setDescription</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork">HasArtwork</span></li><li>public Artwork <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork/getArtwork.xhtml">getArtwork</a>() | ||||
|                         </li><li>public HasArtwork <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork/setArtwork.xhtml">setArtwork</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasLink">HasLink</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink/getLink.xhtml">getLink</a>() | ||||
|                         </li><li>public HasLink <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink/setLink.xhtml">setLink</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit">HasExplicit</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit/getExplicit.xhtml">getExplicit</a>() | ||||
|                         </li><li>public HasExplicit <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit/setExplicit.xhtml">setExplicit</a>() | ||||
|                         </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="hierarchy">Hierarchy</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>Uses</h4> | ||||
|           <ul> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasTitles</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasDescription</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasArtwork</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasLink</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasExplicit</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="artwork"><strong>$artwork</strong> | ||||
|                 — | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Artwork" href="../classes/Lukaswhite_PodcastFeedParser_Artwork.xhtml">Lukaswhite\PodcastFeedParser\Artwork</a></li> | ||||
|             <li id="description"><strong>$description</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="episodeNumber"><strong>$episodeNumber</strong> | ||||
|                 — | ||||
|                 int</li> | ||||
|             <li id="explicit"><strong>$explicit</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="guid"><strong>$guid</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="link"><strong>$link</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="media"><strong>$media</strong> | ||||
|                 — | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Media" href="../classes/Lukaswhite_PodcastFeedParser_Media.xhtml">Lukaswhite\PodcastFeedParser\Media</a></li> | ||||
|             <li id="publishedDate"><strong>$publishedDate</strong> | ||||
|                 — | ||||
|                 <a title="\DateTime" href="../classes/_DateTime.xhtml">\DateTime</a></li> | ||||
|             <li id="season"><strong>$season</strong> | ||||
|                 — | ||||
|                 int</li> | ||||
|             <li id="subtitle"><strong>$subtitle</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="title"><strong>$title</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="type"><strong>$type</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getEpisodeNumber"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getEpisodeNumber.xhtml">getEpisodeNumber()</a> | ||||
|             </li> | ||||
|             <li id="getGuid"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getGuid.xhtml">getGuid()</a> | ||||
|             </li> | ||||
|             <li id="getMedia"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getMedia.xhtml">getMedia()</a> | ||||
|             </li> | ||||
|             <li id="getPublishedDate"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getPublishedDate.xhtml">getPublishedDate()</a> | ||||
|             </li> | ||||
|             <li id="getSeason"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getSeason.xhtml">getSeason()</a> | ||||
|             </li> | ||||
|             <li id="getType"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/getType.xhtml">getType()</a> | ||||
|             </li> | ||||
|             <li id="setEpisodeNumber"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setEpisodeNumber.xhtml">setEpisodeNumber()</a> | ||||
|             </li> | ||||
|             <li id="setGuid"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setGuid.xhtml">setGuid()</a> | ||||
|             </li> | ||||
|             <li id="setMedia"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setMedia.xhtml">setMedia()</a> | ||||
|             </li> | ||||
|             <li id="setPublishedDate"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setPublishedDate.xhtml">setPublishedDate()</a> | ||||
|             </li> | ||||
|             <li id="setSeason"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setSeason.xhtml">setSeason()</a> | ||||
|             </li> | ||||
|             <li id="setType"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Episode" href="../classes/Lukaswhite_PodcastFeedParser_Episode/setType.xhtml">setType()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasTitles</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getSubtitle"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/getSubtitle.xhtml">getSubtitle()</a> | ||||
|             </li> | ||||
|             <li id="getTitle"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/getTitle.xhtml">getTitle()</a> | ||||
|             </li> | ||||
|             <li id="setSubtitle"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/setSubtitle.xhtml">setSubtitle()</a> | ||||
|             </li> | ||||
|             <li id="setTitle"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/setTitle.xhtml">setTitle()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasDescription</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getDescription"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription/getDescription.xhtml">getDescription()</a> | ||||
|             </li> | ||||
|             <li id="setDescription"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription/setDescription.xhtml">setDescription()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasArtwork</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getArtwork"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork/getArtwork.xhtml">getArtwork()</a> | ||||
|             </li> | ||||
|             <li id="setArtwork"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork/setArtwork.xhtml">setArtwork()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasLink</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getLink"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink/getLink.xhtml">getLink()</a> | ||||
|             </li> | ||||
|             <li id="setLink"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink/setLink.xhtml">setLink()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasExplicit</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getExplicit"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit/getExplicit.xhtml">getExplicit()</a> | ||||
|             </li> | ||||
|             <li id="setExplicit"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit/setExplicit.xhtml">setExplicit()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::getEpisodeNumber</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">getEpisodeNumber</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line88">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>getEpisodeNumber</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getEpisodeNumber() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>int</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::getGuid</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">getGuid</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line52">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>getGuid</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getGuid() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,91 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::getMedia</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">getMedia</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line124">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>getMedia</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getMedia() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Media</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,91 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::getPublishedDate</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">getPublishedDate</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line142">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>getPublishedDate</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getPublishedDate() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>DateTime</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::getSeason</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">getSeason</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line106">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>getSeason</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getSeason() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>int</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::getType</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">getType</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line70">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>getType</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getType() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::setEpisodeNumber</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">setEpisodeNumber</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line97">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>setEpisodeNumber</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setEpisodeNumber(int | ||||
|         $episodeNumber ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$episodeNumber</code> | ||||
|                 — | ||||
|                 int</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Episode</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::setGuid</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">setGuid</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line61">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>setGuid</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setGuid(string | ||||
|         $guid ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$guid</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Episode</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::setMedia</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">setMedia</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line133">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>setMedia</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setMedia(<a title="Lukaswhite\PodcastFeedParser\Media" href="../../classes/Lukaswhite_PodcastFeedParser_Media.xhtml">Media</a> | ||||
|         $media ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$media</code> | ||||
|                 — | ||||
|                 object</dt> | ||||
|           <dd><br/><br/><br/>      </dd> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Episode</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::setPublishedDate</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">setPublishedDate</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line151">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>setPublishedDate</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setPublishedDate(<a title="\DateTime" href="../../classes/_DateTime.xhtml">DateTime</a> | ||||
|         $publishedDate ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$publishedDate</code> | ||||
|                 — | ||||
|                 object</dt> | ||||
|           <dd><br/><br/><br/>      </dd> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Episode</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::setSeason</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">setSeason</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line115">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>setSeason</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setSeason(int | ||||
|         $season ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$season</code> | ||||
|                 — | ||||
|                 int</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Episode</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Episode::setType</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|           </li> | ||||
|           <li class="separator">setType</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Episode.php.xhtml#line79">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Episode::</small>setType</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setType(string | ||||
|         $type ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$type</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Episode</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,151 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Exceptions\FileNotFoundException</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml#Lukaswhite_PodcastFeedParser_Exceptions">Lukaswhite\PodcastFeedParser\Exceptions</a> | ||||
|           </li> | ||||
|           <li class="separator">FileNotFoundException</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#hierarchy">Hierarchy</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Exceptions/FileNotFoundException.php.xhtml#line7">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\Exceptions\</small>FileNotFoundException</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class FileNotFoundException | ||||
|                 extends <a title="Exception" href="../classes/Exception.xhtml">Exception</a> | ||||
|             {<br/><ul class="none"><li>// Inherited members from <span title="Exception">Exception</span></li><li>protected  <a href="#members">$message</a>; | ||||
|                         </li><li>protected  <a href="#members">$code</a>; | ||||
|                         </li><li>protected  <a href="#members">$file</a>; | ||||
|                         </li><li>protected  <a href="#members">$line</a>; | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Exception">Exception</span></li><li>public void <a title="Exception" href="../classes/Exception/__construct.xhtml">__construct</a>() | ||||
|                         </li><li>public final string <a title="Exception" href="../classes/Exception/getMessage.xhtml">getMessage</a>() | ||||
|                         </li><li>public final Throwable <a title="Exception" href="../classes/Exception/getPrevious.xhtml">getPrevious</a>() | ||||
|                         </li><li>public final mixed <a title="Exception" href="../classes/Exception/getCode.xhtml">getCode</a>() | ||||
|                         </li><li>public final string <a title="Exception" href="../classes/Exception/getFile.xhtml">getFile</a>() | ||||
|                         </li><li>public final int <a title="Exception" href="../classes/Exception/getLine.xhtml">getLine</a>() | ||||
|                         </li><li>public final array <a title="Exception" href="../classes/Exception/getTrace.xhtml">getTrace</a>() | ||||
|                         </li><li>public final string <a title="Exception" href="../classes/Exception/getTraceAsString.xhtml">getTraceAsString</a>() | ||||
|                         </li><li>public string <a title="Exception" href="../classes/Exception/__toString.xhtml">__toString</a>() | ||||
|                         </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="hierarchy">Hierarchy</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>Extends</h4> | ||||
|           <ul> | ||||
|             <li> | ||||
|               <a title="Exception" href="../classes/Exception.xhtml">Exception</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="code"><strong>$code</strong> | ||||
|                 — | ||||
|                 int<br/><span class="indent">The exception code</span></li> | ||||
|             <li id="file"><strong>$file</strong> | ||||
|                 — | ||||
|                 string<br/><span class="indent">The filename where the exception was created</span></li> | ||||
|             <li id="line"><strong>$line</strong> | ||||
|                 — | ||||
|                 int<br/><span class="indent">The line where the exception was created</span></li> | ||||
|             <li id="message"><strong>$message</strong> | ||||
|                 — | ||||
|                 string<br/><span class="indent">The exception message</span></li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h3>Inherited from <a title="Exception" href="../classes/Exception.xhtml">Exception</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="__toString"><a title="Exception" href="../classes/Exception/__toString.xhtml">__toString()</a> | ||||
|                 — String representation of the exception</li> | ||||
|             <li id="getCode"><a title="Exception" href="../classes/Exception/getCode.xhtml">getCode()</a> | ||||
|                 — Gets the Exception code</li> | ||||
|             <li id="getFile"><a title="Exception" href="../classes/Exception/getFile.xhtml">getFile()</a> | ||||
|                 — Gets the file in which the exception was created</li> | ||||
|             <li id="getLine"><a title="Exception" href="../classes/Exception/getLine.xhtml">getLine()</a> | ||||
|                 — Gets the line in which the exception was created</li> | ||||
|             <li id="getMessage"><a title="Exception" href="../classes/Exception/getMessage.xhtml">getMessage()</a> | ||||
|                 — Gets the Exception message</li> | ||||
|             <li id="getPrevious"><a title="Exception" href="../classes/Exception/getPrevious.xhtml">getPrevious()</a> | ||||
|                 — Returns previous Exception</li> | ||||
|             <li id="getTrace"><a title="Exception" href="../classes/Exception/getTrace.xhtml">getTrace()</a> | ||||
|                 — Gets the stack trace</li> | ||||
|             <li id="getTraceAsString"><a title="Exception" href="../classes/Exception/getTraceAsString.xhtml">getTraceAsString()</a> | ||||
|                 — Gets the stack trace as a string</li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,151 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Exceptions\InvalidXmlException</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml#Lukaswhite_PodcastFeedParser_Exceptions">Lukaswhite\PodcastFeedParser\Exceptions</a> | ||||
|           </li> | ||||
|           <li class="separator">InvalidXmlException</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#hierarchy">Hierarchy</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Exceptions/InvalidXmlException.php.xhtml#line7">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\Exceptions\</small>InvalidXmlException</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class InvalidXmlException | ||||
|                 extends <a title="Exception" href="../classes/Exception.xhtml">Exception</a> | ||||
|             {<br/><ul class="none"><li>// Inherited members from <span title="Exception">Exception</span></li><li>protected  <a href="#members">$message</a>; | ||||
|                         </li><li>protected  <a href="#members">$code</a>; | ||||
|                         </li><li>protected  <a href="#members">$file</a>; | ||||
|                         </li><li>protected  <a href="#members">$line</a>; | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Exception">Exception</span></li><li>public void <a title="Exception" href="../classes/Exception/__construct.xhtml">__construct</a>() | ||||
|                         </li><li>public final string <a title="Exception" href="../classes/Exception/getMessage.xhtml">getMessage</a>() | ||||
|                         </li><li>public final Throwable <a title="Exception" href="../classes/Exception/getPrevious.xhtml">getPrevious</a>() | ||||
|                         </li><li>public final mixed <a title="Exception" href="../classes/Exception/getCode.xhtml">getCode</a>() | ||||
|                         </li><li>public final string <a title="Exception" href="../classes/Exception/getFile.xhtml">getFile</a>() | ||||
|                         </li><li>public final int <a title="Exception" href="../classes/Exception/getLine.xhtml">getLine</a>() | ||||
|                         </li><li>public final array <a title="Exception" href="../classes/Exception/getTrace.xhtml">getTrace</a>() | ||||
|                         </li><li>public final string <a title="Exception" href="../classes/Exception/getTraceAsString.xhtml">getTraceAsString</a>() | ||||
|                         </li><li>public string <a title="Exception" href="../classes/Exception/__toString.xhtml">__toString</a>() | ||||
|                         </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="hierarchy">Hierarchy</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>Extends</h4> | ||||
|           <ul> | ||||
|             <li> | ||||
|               <a title="Exception" href="../classes/Exception.xhtml">Exception</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="code"><strong>$code</strong> | ||||
|                 — | ||||
|                 int<br/><span class="indent">The exception code</span></li> | ||||
|             <li id="file"><strong>$file</strong> | ||||
|                 — | ||||
|                 string<br/><span class="indent">The filename where the exception was created</span></li> | ||||
|             <li id="line"><strong>$line</strong> | ||||
|                 — | ||||
|                 int<br/><span class="indent">The line where the exception was created</span></li> | ||||
|             <li id="message"><strong>$message</strong> | ||||
|                 — | ||||
|                 string<br/><span class="indent">The exception message</span></li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h3>Inherited from <a title="Exception" href="../classes/Exception.xhtml">Exception</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="__toString"><a title="Exception" href="../classes/Exception/__toString.xhtml">__toString()</a> | ||||
|                 — String representation of the exception</li> | ||||
|             <li id="getCode"><a title="Exception" href="../classes/Exception/getCode.xhtml">getCode()</a> | ||||
|                 — Gets the Exception code</li> | ||||
|             <li id="getFile"><a title="Exception" href="../classes/Exception/getFile.xhtml">getFile()</a> | ||||
|                 — Gets the file in which the exception was created</li> | ||||
|             <li id="getLine"><a title="Exception" href="../classes/Exception/getLine.xhtml">getLine()</a> | ||||
|                 — Gets the line in which the exception was created</li> | ||||
|             <li id="getMessage"><a title="Exception" href="../classes/Exception/getMessage.xhtml">getMessage()</a> | ||||
|                 — Gets the Exception message</li> | ||||
|             <li id="getPrevious"><a title="Exception" href="../classes/Exception/getPrevious.xhtml">getPrevious()</a> | ||||
|                 — Returns previous Exception</li> | ||||
|             <li id="getTrace"><a title="Exception" href="../classes/Exception/getTrace.xhtml">getTrace()</a> | ||||
|                 — Gets the stack trace</li> | ||||
|             <li id="getTraceAsString"><a title="Exception" href="../classes/Exception/getTraceAsString.xhtml">getTraceAsString()</a> | ||||
|                 — Gets the stack trace as a string</li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										131
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Link.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										131
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Link.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,131 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Link</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator">Link</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Link.php.xhtml#line5">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\</small>Link</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class Link | ||||
|             {<br/><ul class="none"><li>// members</li><li>protected  <a href="#members">$uri</a>; | ||||
|                     </li><li>protected  <a href="#members">$rel</a>; | ||||
|                     </li><li>protected  <a href="#members">$type</a>; | ||||
|                     </li></ul><ul class="none"><li>// methods</li><li>public void <a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/__construct.xhtml">__construct</a>() | ||||
|                     </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/getUri.xhtml">getUri</a>() | ||||
|                     </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/getRel.xhtml">getRel</a>() | ||||
|                     </li><li>public Link <a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/setRel.xhtml">setRel</a>() | ||||
|                     </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/getType.xhtml">getType</a>() | ||||
|                     </li><li>public Link <a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/setType.xhtml">setType</a>() | ||||
|                     </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="rel"><strong>$rel</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="type"><strong>$type</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="uri"><strong>$uri</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="__construct"><a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/__construct.xhtml">__construct()</a> | ||||
|                 — Link constructor.</li> | ||||
|             <li id="getRel"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/getRel.xhtml">getRel()</a> | ||||
|             </li> | ||||
|             <li id="getType"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/getType.xhtml">getType()</a> | ||||
|             </li> | ||||
|             <li id="getUri"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/getUri.xhtml">getUri()</a> | ||||
|             </li> | ||||
|             <li id="setRel"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/setRel.xhtml">setRel()</a> | ||||
|             </li> | ||||
|             <li id="setType"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Link" href="../classes/Lukaswhite_PodcastFeedParser_Link/setType.xhtml">setType()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,93 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Link::__construct</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Link" href="../../classes/Lukaswhite_PodcastFeedParser_Link.xhtml">Link</a> | ||||
|           </li> | ||||
|           <li class="separator">__construct</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Link.php.xhtml#line27">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Link::</small>__construct</h1> | ||||
|         <h4>Link constructor.</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function __construct(string | ||||
|         $uri ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$uri</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Link::getRel</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Link" href="../../classes/Lukaswhite_PodcastFeedParser_Link.xhtml">Link</a> | ||||
|           </li> | ||||
|           <li class="separator">getRel</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Link.php.xhtml#line43">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Link::</small>getRel</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getRel() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Link::getType</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Link" href="../../classes/Lukaswhite_PodcastFeedParser_Link.xhtml">Link</a> | ||||
|           </li> | ||||
|           <li class="separator">getType</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Link.php.xhtml#line61">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Link::</small>getType</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getType() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Link::getUri</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Link" href="../../classes/Lukaswhite_PodcastFeedParser_Link.xhtml">Link</a> | ||||
|           </li> | ||||
|           <li class="separator">getUri</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Link.php.xhtml#line35">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Link::</small>getUri</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getUri() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										102
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Link/setRel.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										102
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Link/setRel.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Link::setRel</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Link" href="../../classes/Lukaswhite_PodcastFeedParser_Link.xhtml">Link</a> | ||||
|           </li> | ||||
|           <li class="separator">setRel</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Link.php.xhtml#line52">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Link::</small>setRel</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setRel(string | ||||
|         $rel ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$rel</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Link</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Link::setType</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Link" href="../../classes/Lukaswhite_PodcastFeedParser_Link.xhtml">Link</a> | ||||
|           </li> | ||||
|           <li class="separator">setType</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Link.php.xhtml#line70">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Link::</small>setType</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setType(string | ||||
|         $type ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$type</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Link</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										147
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Media.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										147
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Media.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,147 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Media</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator">Media</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#hierarchy">Hierarchy</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Media.php.xhtml#line7">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\</small>Media</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class Media | ||||
|             {<br/><ul class="none"><li>// members</li><li>protected  <a href="#members">$length</a>; | ||||
|                     </li><li>protected  <a href="#members">$mimeType</a>; | ||||
|                     </li></ul><ul class="none"><li>// methods</li><li>public mixed <a title="Lukaswhite\PodcastFeedParser\Media" href="../classes/Lukaswhite_PodcastFeedParser_Media/getLength.xhtml">getLength</a>() | ||||
|                     </li><li>public Media <a title="Lukaswhite\PodcastFeedParser\Media" href="../classes/Lukaswhite_PodcastFeedParser_Media/setLength.xhtml">setLength</a>() | ||||
|                     </li><li>public mixed <a title="Lukaswhite\PodcastFeedParser\Media" href="../classes/Lukaswhite_PodcastFeedParser_Media/getMimeType.xhtml">getMimeType</a>() | ||||
|                     </li><li>public Media <a title="Lukaswhite\PodcastFeedParser\Media" href="../classes/Lukaswhite_PodcastFeedParser_Media/setMimeType.xhtml">setMimeType</a>() | ||||
|                     </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasUri">HasUri</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri/getUri.xhtml">getUri</a>() | ||||
|                         </li><li>public HasUri <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri/setUri.xhtml">setUri</a>() | ||||
|                         </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="hierarchy">Hierarchy</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>Uses</h4> | ||||
|           <ul> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasUri</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="length"> | ||||
|               <strong>$length</strong> | ||||
|             </li> | ||||
|             <li id="mimeType"> | ||||
|               <strong>$mimeType</strong> | ||||
|             </li> | ||||
|             <li id="uri"><strong>$uri</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getLength"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Media" href="../classes/Lukaswhite_PodcastFeedParser_Media/getLength.xhtml">getLength()</a> | ||||
|             </li> | ||||
|             <li id="getMimeType"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Media" href="../classes/Lukaswhite_PodcastFeedParser_Media/getMimeType.xhtml">getMimeType()</a> | ||||
|             </li> | ||||
|             <li id="setLength"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Media" href="../classes/Lukaswhite_PodcastFeedParser_Media/setLength.xhtml">setLength()</a> | ||||
|             </li> | ||||
|             <li id="setMimeType"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Media" href="../classes/Lukaswhite_PodcastFeedParser_Media/setMimeType.xhtml">setMimeType()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasUri</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getUri"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri/getUri.xhtml">getUri()</a> | ||||
|             </li> | ||||
|             <li id="setUri"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasUri" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasUri/setUri.xhtml">setUri()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Media::getLength</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Media" href="../../classes/Lukaswhite_PodcastFeedParser_Media.xhtml">Media</a> | ||||
|           </li> | ||||
|           <li class="separator">getLength</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Media.php.xhtml#line18">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Media::</small>getLength</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getLength() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>mixed</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Media::getMimeType</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Media" href="../../classes/Lukaswhite_PodcastFeedParser_Media.xhtml">Media</a> | ||||
|           </li> | ||||
|           <li class="separator">getMimeType</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Media.php.xhtml#line36">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Media::</small>getMimeType</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getMimeType() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>mixed</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Media::setLength</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Media" href="../../classes/Lukaswhite_PodcastFeedParser_Media.xhtml">Media</a> | ||||
|           </li> | ||||
|           <li class="separator">setLength</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Media.php.xhtml#line27">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Media::</small>setLength</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setLength(mixed | ||||
|         $length ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$length</code> | ||||
|                 — | ||||
|                 mixed</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Media</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Media::setMimeType</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Media" href="../../classes/Lukaswhite_PodcastFeedParser_Media.xhtml">Media</a> | ||||
|           </li> | ||||
|           <li class="separator">setMimeType</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Media.php.xhtml#line45">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Media::</small>setMimeType</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setMimeType(mixed | ||||
|         $mimeType ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$mimeType</code> | ||||
|                 — | ||||
|                 mixed</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Media</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										120
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Owner.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										120
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Owner.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,120 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Owner</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator">Owner</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Owner.php.xhtml#line5">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\</small>Owner</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class Owner | ||||
|             {<br/><ul class="none"><li>// members</li><li>protected  <a href="#members">$name</a>; | ||||
|                     </li><li>protected  <a href="#members">$email</a>; | ||||
|                     </li></ul><ul class="none"><li>// methods</li><li>public mixed <a title="Lukaswhite\PodcastFeedParser\Owner" href="../classes/Lukaswhite_PodcastFeedParser_Owner/getName.xhtml">getName</a>() | ||||
|                     </li><li>public Owner <a title="Lukaswhite\PodcastFeedParser\Owner" href="../classes/Lukaswhite_PodcastFeedParser_Owner/setName.xhtml">setName</a>() | ||||
|                     </li><li>public mixed <a title="Lukaswhite\PodcastFeedParser\Owner" href="../classes/Lukaswhite_PodcastFeedParser_Owner/getEmail.xhtml">getEmail</a>() | ||||
|                     </li><li>public Owner <a title="Lukaswhite\PodcastFeedParser\Owner" href="../classes/Lukaswhite_PodcastFeedParser_Owner/setEmail.xhtml">setEmail</a>() | ||||
|                     </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="email"><strong>$email</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="name"><strong>$name</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getEmail"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Owner" href="../classes/Lukaswhite_PodcastFeedParser_Owner/getEmail.xhtml">getEmail()</a> | ||||
|             </li> | ||||
|             <li id="getName"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Owner" href="../classes/Lukaswhite_PodcastFeedParser_Owner/getName.xhtml">getName()</a> | ||||
|             </li> | ||||
|             <li id="setEmail"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Owner" href="../classes/Lukaswhite_PodcastFeedParser_Owner/setEmail.xhtml">setEmail()</a> | ||||
|             </li> | ||||
|             <li id="setName"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Owner" href="../classes/Lukaswhite_PodcastFeedParser_Owner/setName.xhtml">setName()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Owner::getEmail</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Owner" href="../../classes/Lukaswhite_PodcastFeedParser_Owner.xhtml">Owner</a> | ||||
|           </li> | ||||
|           <li class="separator">getEmail</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Owner.php.xhtml#line38">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Owner::</small>getEmail</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getEmail() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>mixed</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Owner::getName</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Owner" href="../../classes/Lukaswhite_PodcastFeedParser_Owner.xhtml">Owner</a> | ||||
|           </li> | ||||
|           <li class="separator">getName</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Owner.php.xhtml#line20">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Owner::</small>getName</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getName() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>mixed</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Owner::setEmail</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Owner" href="../../classes/Lukaswhite_PodcastFeedParser_Owner.xhtml">Owner</a> | ||||
|           </li> | ||||
|           <li class="separator">setEmail</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Owner.php.xhtml#line47">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Owner::</small>setEmail</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setEmail(mixed | ||||
|         $email ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$email</code> | ||||
|                 — | ||||
|                 mixed</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Owner</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Owner::setName</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Owner" href="../../classes/Lukaswhite_PodcastFeedParser_Owner.xhtml">Owner</a> | ||||
|           </li> | ||||
|           <li class="separator">setName</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Owner.php.xhtml#line29">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Owner::</small>setName</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setName(mixed | ||||
|         $name ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$name</code> | ||||
|                 — | ||||
|                 mixed</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Owner</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										181
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Parser.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										181
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Parser.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,181 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Parser</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator">Parser</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#constants">Constants</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Parser.php.xhtml#line16">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\</small>Parser</h1> | ||||
|         <h4>Class Parser</h4> | ||||
|         <p>Parse a podcast feed.</p> | ||||
|         <ul/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class Parser | ||||
|             {<br/><ul class="none"><li>// constants</li><li>const NS_ITUNES = 'http://www.itunes.com/dtds/podcast-1.0.dtd';</li><li>const NS_GOOGLE_PLAY = 'http://www.google.com/schemas/play-podcasts/1.0';</li><li>const NS_ATOM = 'http://www.w3.org/2005/Atom';</li><li>const NS_SYNDICATION = 'http://purl.org/rss/1.0/modules/syndication/';</li><li>const NS_RAWVOICE = 'http://www.rawvoice.com/rawvoiceRssModule/';</li></ul><ul class="none"><li>// members</li><li>protected  <a href="#members">$content</a>; | ||||
|                     </li><li>protected <span title="\SimplePie">SimplePie</span> <a href="#members">$sp</a>; | ||||
|                     </li></ul><ul class="none"><li>// methods</li><li>public <span title="Parser">Parser</span> <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/setContent.xhtml">setContent</a>() | ||||
|                     </li><li>public <span title="Parser">Parser</span> <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/load.xhtml">load</a>() | ||||
|                     </li><li>public <span title="Podcast">Podcast</span> <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/run.xhtml">run</a>() | ||||
|                     </li><li>protected void <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/parseRssTags.xhtml">parseRssTags</a>() | ||||
|                     </li><li>protected void <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/parseAtomTags.xhtml">parseAtomTags</a>() | ||||
|                     </li><li>protected void <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/parseSyndicationFields.xhtml">parseSyndicationFields</a>() | ||||
|                     </li><li>protected void <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/parseRawvoiceFields.xhtml">parseRawvoiceFields</a>() | ||||
|                     </li><li>protected Episode <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/parseEpisodeItem.xhtml">parseEpisodeItem</a>() | ||||
|                     </li><li>protected <span title="Media">Media</span> <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/getFile.xhtml">getFile</a>() | ||||
|                     </li><li>protected mixed <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/getSingleNamespacedChannelItem.xhtml">getSingleNamespacedChannelItem</a>() | ||||
|                     </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="constants">Constants</h2> | ||||
|         <table class="styled"> | ||||
|           <thead> | ||||
|             <tr> | ||||
|               <th>Name</th> | ||||
|               <th>Value</th> | ||||
|             </tr> | ||||
|           </thead> | ||||
|           <tbody> | ||||
|             <tr> | ||||
|               <td id="NS_ITUNES">NS_ITUNES</td> | ||||
|               <td>'http://www.itunes.com/dtds/podcast-1.0.dtd'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="NS_GOOGLE_PLAY">NS_GOOGLE_PLAY</td> | ||||
|               <td>'http://www.google.com/schemas/play-podcasts/1.0'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="NS_ATOM">NS_ATOM</td> | ||||
|               <td>'http://www.w3.org/2005/Atom'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="NS_SYNDICATION">NS_SYNDICATION</td> | ||||
|               <td>'http://purl.org/rss/1.0/modules/syndication/'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="NS_RAWVOICE">NS_RAWVOICE</td> | ||||
|               <td>'http://www.rawvoice.com/rawvoiceRssModule/'</td> | ||||
|             </tr> | ||||
|           </tbody> | ||||
|         </table> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="content"><strong>$content</strong> | ||||
|                 — | ||||
|                 string<br/><span class="indent">The raw feed content</span></li> | ||||
|             <li id="sp"><strong>$sp</strong> | ||||
|                 — | ||||
|                 <a title="\SimplePie" href="../classes/_SimplePie.xhtml">\SimplePie</a></li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>protected</h4> | ||||
|           <ul> | ||||
|             <li id="getFile"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/getFile.xhtml">getFile()</a> | ||||
|             </li> | ||||
|             <li id="getSingleNamespacedChannelItem"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/getSingleNamespacedChannelItem.xhtml">getSingleNamespacedChannelItem()</a> | ||||
|             </li> | ||||
|             <li id="parseAtomTags"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/parseAtomTags.xhtml">parseAtomTags()</a> | ||||
|             </li> | ||||
|             <li id="parseEpisodeItem"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/parseEpisodeItem.xhtml">parseEpisodeItem()</a> | ||||
|             </li> | ||||
|             <li id="parseRawvoiceFields"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/parseRawvoiceFields.xhtml">parseRawvoiceFields()</a> | ||||
|             </li> | ||||
|             <li id="parseRssTags"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/parseRssTags.xhtml">parseRssTags()</a> | ||||
|             </li> | ||||
|             <li id="parseSyndicationFields"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/parseSyndicationFields.xhtml">parseSyndicationFields()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="load"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/load.xhtml">load()</a> | ||||
|             </li> | ||||
|             <li id="run"><a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/run.xhtml">run()</a> | ||||
|                 — Run the parser and return an object that represents the parsed podcast.</li> | ||||
|             <li id="setContent"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Parser" href="../classes/Lukaswhite_PodcastFeedParser_Parser/setContent.xhtml">setContent()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Parser::getFile</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Parser" href="../../classes/Lukaswhite_PodcastFeedParser_Parser.xhtml">Parser</a> | ||||
|           </li> | ||||
|           <li class="separator">getFile</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Parser.php.xhtml#line343">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Parser::</small>getFile</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>protected function getFile(<a title="SimplePie_Item" href="../../classes/SimplePie_Item.xhtml">SimplePie_Item</a> | ||||
|         $item ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$item</code> | ||||
|                 — | ||||
|                 <a title="\SimplePie_Item" href="../../classes/_SimplePie_Item.xhtml">\SimplePie_Item</a></dt> | ||||
|           <dd><br/><br/><br/>      </dd> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Media</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,113 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Parser::getSingleNamespacedChannelItem</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Parser" href="../../classes/Lukaswhite_PodcastFeedParser_Parser.xhtml">Parser</a> | ||||
|           </li> | ||||
|           <li class="separator">getSingleNamespacedChannelItem</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Parser.php.xhtml#line359">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Parser::</small>getSingleNamespacedChannelItem</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>protected function getSingleNamespacedChannelItem( | ||||
|         $namespace, | ||||
|              | ||||
|         $name, | ||||
|             [null | ||||
|         $item = NULL] ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$namespace</code> | ||||
|                 — | ||||
|                 </dt> | ||||
|           <dd/> | ||||
|           <dt><code>$name</code> | ||||
|                 — | ||||
|                 </dt> | ||||
|           <dd/> | ||||
|           <dt><code>$item</code> | ||||
|                 — | ||||
|                 null</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>mixed</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										120
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Parser/load.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										120
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Parser/load.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,120 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Parser::load</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Parser" href="../../classes/Lukaswhite_PodcastFeedParser_Parser.xhtml">Parser</a> | ||||
|           </li> | ||||
|           <li class="separator">load</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#throws">Throws</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Parser.php.xhtml#line62">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Parser::</small>load</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function load(string | ||||
|         $filepath ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$filepath</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Parser</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|         <h2 id="throws">Errors/Exceptions</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt> | ||||
|             <code> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Exceptions\FileNotFoundException" href="../../classes/Lukaswhite_PodcastFeedParser_Exceptions_FileNotFoundException.xhtml">FileNotFoundException</a> | ||||
|             </code> | ||||
|           </dt> | ||||
|           <dd/> | ||||
|           <dt> | ||||
|             <code> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Exceptions\InvalidXmlException" href="../../classes/Lukaswhite_PodcastFeedParser_Exceptions_InvalidXmlException.xhtml">InvalidXmlException</a> | ||||
|             </code> | ||||
|           </dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,93 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Parser::parseAtomTags</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Parser" href="../../classes/Lukaswhite_PodcastFeedParser_Parser.xhtml">Parser</a> | ||||
|           </li> | ||||
|           <li class="separator">parseAtomTags</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Parser.php.xhtml#line209">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Parser::</small>parseAtomTags</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>protected function parseAtomTags(<a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|         $podcast ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$podcast</code> | ||||
|                 — | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Lukaswhite\PodcastFeedParser\Podcast</a></dt> | ||||
|           <dd><br/><br/><br/>      </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,114 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Parser::parseEpisodeItem</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Parser" href="../../classes/Lukaswhite_PodcastFeedParser_Parser.xhtml">Parser</a> | ||||
|           </li> | ||||
|           <li class="separator">parseEpisodeItem</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#throws">Throws</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Parser.php.xhtml#line279">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Parser::</small>parseEpisodeItem</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>protected function parseEpisodeItem(<a title="SimplePie_Item" href="../../classes/SimplePie_Item.xhtml">SimplePie_Item</a> | ||||
|         $item ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$item</code> | ||||
|                 — | ||||
|                 <a title="\SimplePie_Item" href="../../classes/_SimplePie_Item.xhtml">\SimplePie_Item</a></dt> | ||||
|           <dd><br/><br/><br/>      </dd> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Episode</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|         <h2 id="throws">Errors/Exceptions</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt> | ||||
|             <code> | ||||
|               <a title="\Exception" href="../../classes/_Exception.xhtml">Exception</a> | ||||
|             </code> | ||||
|           </dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,105 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Parser::parseRawvoiceFields</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Parser" href="../../classes/Lukaswhite_PodcastFeedParser_Parser.xhtml">Parser</a> | ||||
|           </li> | ||||
|           <li class="separator">parseRawvoiceFields</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#throws">Throws</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Parser.php.xhtml#line250">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Parser::</small>parseRawvoiceFields</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>protected function parseRawvoiceFields(<a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|         $podcast ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$podcast</code> | ||||
|                 — | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Lukaswhite\PodcastFeedParser\Podcast</a></dt> | ||||
|           <dd><br/><br/><br/>      </dd> | ||||
|         </dl> | ||||
|         <h2 id="throws">Errors/Exceptions</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt> | ||||
|             <code> | ||||
|               <a title="\Exception" href="../../classes/_Exception.xhtml">Exception</a> | ||||
|             </code> | ||||
|           </dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,105 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Parser::parseRssTags</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Parser" href="../../classes/Lukaswhite_PodcastFeedParser_Parser.xhtml">Parser</a> | ||||
|           </li> | ||||
|           <li class="separator">parseRssTags</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#throws">Throws</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Parser.php.xhtml#line193">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Parser::</small>parseRssTags</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>protected function parseRssTags(<a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|         $podcast ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$podcast</code> | ||||
|                 — | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Lukaswhite\PodcastFeedParser\Podcast</a></dt> | ||||
|           <dd><br/><br/><br/>      </dd> | ||||
|         </dl> | ||||
|         <h2 id="throws">Errors/Exceptions</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt> | ||||
|             <code> | ||||
|               <a title="\Exception" href="../../classes/_Exception.xhtml">Exception</a> | ||||
|             </code> | ||||
|           </dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,105 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Parser::parseSyndicationFields</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Parser" href="../../classes/Lukaswhite_PodcastFeedParser_Parser.xhtml">Parser</a> | ||||
|           </li> | ||||
|           <li class="separator">parseSyndicationFields</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#throws">Throws</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Parser.php.xhtml#line230">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Parser::</small>parseSyndicationFields</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>protected function parseSyndicationFields(<a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|         $podcast ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$podcast</code> | ||||
|                 — | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Lukaswhite\PodcastFeedParser\Podcast</a></dt> | ||||
|           <dd><br/><br/><br/>      </dd> | ||||
|         </dl> | ||||
|         <h2 id="throws">Errors/Exceptions</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt> | ||||
|             <code> | ||||
|               <a title="\Exception" href="../../classes/_Exception.xhtml">Exception</a> | ||||
|             </code> | ||||
|           </dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										103
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Parser/run.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										103
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Parser/run.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,103 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Parser::run</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Parser" href="../../classes/Lukaswhite_PodcastFeedParser_Parser.xhtml">Parser</a> | ||||
|           </li> | ||||
|           <li class="separator">run</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#throws">Throws</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Parser.php.xhtml#line77">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Parser::</small>run</h1> | ||||
|         <h4>Run the parser and return an object that represents the parsed podcast.</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function run() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Podcast</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|         <h2 id="throws">Errors/Exceptions</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt> | ||||
|             <code> | ||||
|               <a title="\Exception" href="../../classes/_Exception.xhtml">Exception</a> | ||||
|             </code> | ||||
|           </dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,114 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Parser::setContent</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Parser" href="../../classes/Lukaswhite_PodcastFeedParser_Parser.xhtml">Parser</a> | ||||
|           </li> | ||||
|           <li class="separator">setContent</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#throws">Throws</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Parser.php.xhtml#line44">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Parser::</small>setContent</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setContent(string | ||||
|         $content ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$content</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>$this</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|         <h2 id="throws">Errors/Exceptions</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt> | ||||
|             <code> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Exceptions\InvalidXmlException" href="../../classes/Lukaswhite_PodcastFeedParser_Exceptions_InvalidXmlException.xhtml">InvalidXmlException</a> | ||||
|             </code> | ||||
|           </dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										501
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										501
									
								
								docs/html/classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,501 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Podcast</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator">Podcast</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#hierarchy">Hierarchy</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#constants">Constants</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Podcast.php.xhtml#line17">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\</small>Podcast</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class Podcast | ||||
|                 implements | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Contracts\HasArtwork" href="../interfaces/Lukaswhite_PodcastFeedParser_Contracts_HasArtwork.xhtml">HasArtwork</a> | ||||
|             {<br/><ul class="none"><li>// constants</li><li>const EPISODIC = 'episodic';</li><li>const SERIAL = 'serial';</li></ul><ul class="none"><li>// members</li><li>protected array <a href="#members">$episodes</a> = | ||||
|                         ; | ||||
|                     </li><li>protected  <a href="#members">$language</a>; | ||||
|                     </li><li>protected  <a href="#members">$author</a>; | ||||
|                     </li><li>protected  <a href="#members">$managingEditor</a>; | ||||
|                     </li><li>protected  <a href="#members">$copyright</a>; | ||||
|                     </li></ul><ul class="none"><li>// methods</li><li>public array <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/getEpisodes.xhtml">getEpisodes</a>() | ||||
|                     </li><li>public $this <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/addEpisode.xhtml">addEpisode</a>() | ||||
|                     </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/getLanguage.xhtml">getLanguage</a>() | ||||
|                     </li><li>public Podcast <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/setLanguage.xhtml">setLanguage</a>() | ||||
|                     </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/getAuthor.xhtml">getAuthor</a>() | ||||
|                     </li><li>public Podcast <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/setAuthor.xhtml">setAuthor</a>() | ||||
|                     </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/getManagingEditor.xhtml">getManagingEditor</a>() | ||||
|                     </li><li>public Podcast <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/setManagingEditor.xhtml">setManagingEditor</a>() | ||||
|                     </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/getCopyright.xhtml">getCopyright</a>() | ||||
|                     </li><li>public Podcast <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/setCopyright.xhtml">setCopyright</a>() | ||||
|                     </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasTitles">HasTitles</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/getTitle.xhtml">getTitle</a>() | ||||
|                         </li><li>public HasTitles <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/setTitle.xhtml">setTitle</a>() | ||||
|                         </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/getSubtitle.xhtml">getSubtitle</a>() | ||||
|                         </li><li>public HasTitles <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/setSubtitle.xhtml">setSubtitle</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasDescription">HasDescription</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription/getDescription.xhtml">getDescription</a>() | ||||
|                         </li><li>public HasDescription <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription/setDescription.xhtml">setDescription</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\IsRssFeed">IsRssFeed</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\IsRssFeed" href="../traits/Lukaswhite_PodcastFeedParser_Traits_IsRssFeed/getGenerator.xhtml">getGenerator</a>() | ||||
|                         </li><li>public IsRssFeed <a title="Lukaswhite\PodcastFeedParser\Traits\IsRssFeed" href="../traits/Lukaswhite_PodcastFeedParser_Traits_IsRssFeed/setGenerator.xhtml">setGenerator</a>() | ||||
|                         </li><li>public DateTime <a title="Lukaswhite\PodcastFeedParser\Traits\IsRssFeed" href="../traits/Lukaswhite_PodcastFeedParser_Traits_IsRssFeed/getLastBuildDate.xhtml">getLastBuildDate</a>() | ||||
|                         </li><li>public IsRssFeed <a title="Lukaswhite\PodcastFeedParser\Traits\IsRssFeed" href="../traits/Lukaswhite_PodcastFeedParser_Traits_IsRssFeed/setLastBuildDate.xhtml">setLastBuildDate</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags">HasItunesTags</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/getType.xhtml">getType</a>() | ||||
|                         </li><li>public bool <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/isEpisodic.xhtml">isEpisodic</a>() | ||||
|                         </li><li>public bool <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/isSerial.xhtml">isSerial</a>() | ||||
|                         </li><li>public HasItunesTags <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/setType.xhtml">setType</a>() | ||||
|                         </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/getNewFeedUrl.xhtml">getNewFeedUrl</a>() | ||||
|                         </li><li>public HasItunesTags <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/setNewFeedUrl.xhtml">setNewFeedUrl</a>() | ||||
|                         </li><li>public Owner <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/getOwner.xhtml">getOwner</a>() | ||||
|                         </li><li>public HasItunesTags <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/setOwner.xhtml">setOwner</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasAtomTags">HasAtomTags</span></li><li>public array <a title="Lukaswhite\PodcastFeedParser\Traits\HasAtomTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasAtomTags/getAtomLinks.xhtml">getAtomLinks</a>() | ||||
|                         </li><li>public HasAtomTags <a title="Lukaswhite\PodcastFeedParser\Traits\HasAtomTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasAtomTags/addAtomLink.xhtml">addAtomLink</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags">HasSyndicationTags</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/getUpdatePeriod.xhtml">getUpdatePeriod</a>() | ||||
|                         </li><li>public HasSyndicationTags <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/setUpdatePeriod.xhtml">setUpdatePeriod</a>() | ||||
|                         </li><li>public int <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/getUpdateFrequency.xhtml">getUpdateFrequency</a>() | ||||
|                         </li><li>public HasSyndicationTags <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/setUpdateFrequency.xhtml">setUpdateFrequency</a>() | ||||
|                         </li><li>public DateTime <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/getUpdateBase.xhtml">getUpdateBase</a>() | ||||
|                         </li><li>public HasSyndicationTags <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/setUpdateBase.xhtml">setUpdateBase</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags">HasRawvoiceTags</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/getRawvoiceRating.xhtml">getRawvoiceRating</a>() | ||||
|                         </li><li>public HasRawvoiceTags <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/setRawvoiceRating.xhtml">setRawvoiceRating</a>() | ||||
|                         </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/getRawvoiceLocation.xhtml">getRawvoiceLocation</a>() | ||||
|                         </li><li>public HasRawvoiceTags <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/setRawvoiceLocation.xhtml">setRawvoiceLocation</a>() | ||||
|                         </li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/getRawvoiceFrequency.xhtml">getRawvoiceFrequency</a>() | ||||
|                         </li><li>public HasRawvoiceTags <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/setRawvoiceFrequency.xhtml">setRawvoiceFrequency</a>() | ||||
|                         </li><li>public Subscribe <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/getRawvoiceSubscribe.xhtml">getRawvoiceSubscribe</a>() | ||||
|                         </li><li>public HasRawvoiceTags <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/setRawvoiceSubscribe.xhtml">setRawvoiceSubscribe</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork">HasArtwork</span></li><li>public Artwork <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork/getArtwork.xhtml">getArtwork</a>() | ||||
|                         </li><li>public HasArtwork <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork/setArtwork.xhtml">setArtwork</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasLink">HasLink</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink/getLink.xhtml">getLink</a>() | ||||
|                         </li><li>public HasLink <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink/setLink.xhtml">setLink</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit">HasExplicit</span></li><li>public string <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit/getExplicit.xhtml">getExplicit</a>() | ||||
|                         </li><li>public HasExplicit <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit/setExplicit.xhtml">setExplicit</a>() | ||||
|                         </li></ul><ul class="none"><li>// Inherited methods from <span title="Lukaswhite\PodcastFeedParser\Traits\HasCategories">HasCategories</span></li><li>public array <a title="Lukaswhite\PodcastFeedParser\Traits\HasCategories" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasCategories/getCategories.xhtml">getCategories</a>() | ||||
|                         </li><li>public $this <a title="Lukaswhite\PodcastFeedParser\Traits\HasCategories" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasCategories/addCategory.xhtml">addCategory</a>() | ||||
|                         </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="hierarchy">Hierarchy</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>Uses</h4> | ||||
|           <ul> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasTitles</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasDescription</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\IsRssFeed" href="../traits/Lukaswhite_PodcastFeedParser_Traits_IsRssFeed.xhtml">Lukaswhite\PodcastFeedParser\Traits\IsRssFeed</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasItunesTags</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasAtomTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasAtomTags.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasAtomTags</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasArtwork</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasLink</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasExplicit</a> | ||||
|             </li> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasCategories" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasCategories.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasCategories</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h4>Implements</h4> | ||||
|           <ul> | ||||
|             <li> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Contracts\HasArtwork" href="../interfaces/Lukaswhite_PodcastFeedParser_Contracts_HasArtwork.xhtml">Lukaswhite\PodcastFeedParser\Contracts\HasArtwork</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="constants">Constants</h2> | ||||
|         <table class="styled"> | ||||
|           <thead> | ||||
|             <tr> | ||||
|               <th>Name</th> | ||||
|               <th>Value</th> | ||||
|             </tr> | ||||
|           </thead> | ||||
|           <tbody> | ||||
|             <tr> | ||||
|               <td id="EPISODIC">EPISODIC</td> | ||||
|               <td>'episodic'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="SERIAL">SERIAL</td> | ||||
|               <td>'serial'</td> | ||||
|             </tr> | ||||
|           </tbody> | ||||
|         </table> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="artwork"><strong>$artwork</strong> | ||||
|                 — | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Artwork" href="../classes/Lukaswhite_PodcastFeedParser_Artwork.xhtml">Lukaswhite\PodcastFeedParser\Artwork</a></li> | ||||
|             <li id="atomLinks"><strong>$atomLinks</strong> | ||||
|                 — | ||||
|                 array</li> | ||||
|             <li id="author"><strong>$author</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="categories"><strong>$categories</strong> | ||||
|                 — | ||||
|                 array</li> | ||||
|             <li id="copyright"><strong>$copyright</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="description"><strong>$description</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="episodes"><strong>$episodes</strong> | ||||
|                 — | ||||
|                 array</li> | ||||
|             <li id="explicit"><strong>$explicit</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="generator"><strong>$generator</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="language"><strong>$language</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="lastBuildDate"><strong>$lastBuildDate</strong> | ||||
|                 — | ||||
|                 <a title="\DateTime" href="../classes/_DateTime.xhtml">\DateTime</a></li> | ||||
|             <li id="link"><strong>$link</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="managingEditor"><strong>$managingEditor</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="newFeedUrl"><strong>$newFeedUrl</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="owner"><strong>$owner</strong> | ||||
|                 — | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Owner" href="../classes/Lukaswhite_PodcastFeedParser_Owner.xhtml">Lukaswhite\PodcastFeedParser\Owner</a></li> | ||||
|             <li id="rawvoiceFrequency"><strong>$rawvoiceFrequency</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="rawvoiceLocation"><strong>$rawvoiceLocation</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="rawvoiceRating"><strong>$rawvoiceRating</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="rawvoiceSubscribe"><strong>$rawvoiceSubscribe</strong> | ||||
|                 — | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe" href="../classes/Lukaswhite_PodcastFeedParser_Rawvoice_Subscribe.xhtml">Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe</a></li> | ||||
|             <li id="subtitle"><strong>$subtitle</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="title"><strong>$title</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="type"><strong>$type</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|             <li id="updateBase"><strong>$updateBase</strong> | ||||
|                 — | ||||
|                 <a title="\DateTime" href="../classes/_DateTime.xhtml">\DateTime</a></li> | ||||
|             <li id="updateFrequency"><strong>$updateFrequency</strong> | ||||
|                 — | ||||
|                 int</li> | ||||
|             <li id="updatePeriod"><strong>$updatePeriod</strong> | ||||
|                 — | ||||
|                 string</li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="addEpisode"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/addEpisode.xhtml">addEpisode()</a> | ||||
|             </li> | ||||
|             <li id="getAuthor"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/getAuthor.xhtml">getAuthor()</a> | ||||
|             </li> | ||||
|             <li id="getCopyright"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/getCopyright.xhtml">getCopyright()</a> | ||||
|             </li> | ||||
|             <li id="getEpisodes"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/getEpisodes.xhtml">getEpisodes()</a> | ||||
|             </li> | ||||
|             <li id="getLanguage"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/getLanguage.xhtml">getLanguage()</a> | ||||
|             </li> | ||||
|             <li id="getManagingEditor"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/getManagingEditor.xhtml">getManagingEditor()</a> | ||||
|             </li> | ||||
|             <li id="setAuthor"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/setAuthor.xhtml">setAuthor()</a> | ||||
|             </li> | ||||
|             <li id="setCopyright"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/setCopyright.xhtml">setCopyright()</a> | ||||
|             </li> | ||||
|             <li id="setLanguage"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/setLanguage.xhtml">setLanguage()</a> | ||||
|             </li> | ||||
|             <li id="setManagingEditor"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../classes/Lukaswhite_PodcastFeedParser_Podcast/setManagingEditor.xhtml">setManagingEditor()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasTitles</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getSubtitle"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/getSubtitle.xhtml">getSubtitle()</a> | ||||
|             </li> | ||||
|             <li id="getTitle"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/getTitle.xhtml">getTitle()</a> | ||||
|             </li> | ||||
|             <li id="setSubtitle"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/setSubtitle.xhtml">setSubtitle()</a> | ||||
|             </li> | ||||
|             <li id="setTitle"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasTitles" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasTitles/setTitle.xhtml">setTitle()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasDescription</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getDescription"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription/getDescription.xhtml">getDescription()</a> | ||||
|             </li> | ||||
|             <li id="setDescription"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasDescription" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasDescription/setDescription.xhtml">setDescription()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\IsRssFeed" href="../traits/Lukaswhite_PodcastFeedParser_Traits_IsRssFeed.xhtml">Lukaswhite\PodcastFeedParser\Traits\IsRssFeed</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getGenerator"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\IsRssFeed" href="../traits/Lukaswhite_PodcastFeedParser_Traits_IsRssFeed/getGenerator.xhtml">getGenerator()</a> | ||||
|             </li> | ||||
|             <li id="getLastBuildDate"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\IsRssFeed" href="../traits/Lukaswhite_PodcastFeedParser_Traits_IsRssFeed/getLastBuildDate.xhtml">getLastBuildDate()</a> | ||||
|             </li> | ||||
|             <li id="setGenerator"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\IsRssFeed" href="../traits/Lukaswhite_PodcastFeedParser_Traits_IsRssFeed/setGenerator.xhtml">setGenerator()</a> | ||||
|             </li> | ||||
|             <li id="setLastBuildDate"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\IsRssFeed" href="../traits/Lukaswhite_PodcastFeedParser_Traits_IsRssFeed/setLastBuildDate.xhtml">setLastBuildDate()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasItunesTags</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getNewFeedUrl"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/getNewFeedUrl.xhtml">getNewFeedUrl()</a> | ||||
|             </li> | ||||
|             <li id="getOwner"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/getOwner.xhtml">getOwner()</a> | ||||
|             </li> | ||||
|             <li id="getType"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/getType.xhtml">getType()</a> | ||||
|             </li> | ||||
|             <li id="isEpisodic"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/isEpisodic.xhtml">isEpisodic()</a> | ||||
|             </li> | ||||
|             <li id="isSerial"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/isSerial.xhtml">isSerial()</a> | ||||
|             </li> | ||||
|             <li id="setNewFeedUrl"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/setNewFeedUrl.xhtml">setNewFeedUrl()</a> | ||||
|             </li> | ||||
|             <li id="setOwner"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/setOwner.xhtml">setOwner()</a> | ||||
|             </li> | ||||
|             <li id="setType"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasItunesTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasItunesTags/setType.xhtml">setType()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasAtomTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasAtomTags.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasAtomTags</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="addAtomLink"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasAtomTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasAtomTags/addAtomLink.xhtml">addAtomLink()</a> | ||||
|             </li> | ||||
|             <li id="getAtomLinks"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasAtomTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasAtomTags/getAtomLinks.xhtml">getAtomLinks()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getUpdateBase"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/getUpdateBase.xhtml">getUpdateBase()</a> | ||||
|             </li> | ||||
|             <li id="getUpdateFrequency"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/getUpdateFrequency.xhtml">getUpdateFrequency()</a> | ||||
|             </li> | ||||
|             <li id="getUpdatePeriod"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/getUpdatePeriod.xhtml">getUpdatePeriod()</a> | ||||
|             </li> | ||||
|             <li id="setUpdateBase"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/setUpdateBase.xhtml">setUpdateBase()</a> | ||||
|             </li> | ||||
|             <li id="setUpdateFrequency"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/setUpdateFrequency.xhtml">setUpdateFrequency()</a> | ||||
|             </li> | ||||
|             <li id="setUpdatePeriod"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasSyndicationTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasSyndicationTags/setUpdatePeriod.xhtml">setUpdatePeriod()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getRawvoiceFrequency"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/getRawvoiceFrequency.xhtml">getRawvoiceFrequency()</a> | ||||
|             </li> | ||||
|             <li id="getRawvoiceLocation"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/getRawvoiceLocation.xhtml">getRawvoiceLocation()</a> | ||||
|             </li> | ||||
|             <li id="getRawvoiceRating"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/getRawvoiceRating.xhtml">getRawvoiceRating()</a> | ||||
|             </li> | ||||
|             <li id="getRawvoiceSubscribe"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/getRawvoiceSubscribe.xhtml">getRawvoiceSubscribe()</a> | ||||
|             </li> | ||||
|             <li id="setRawvoiceFrequency"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/setRawvoiceFrequency.xhtml">setRawvoiceFrequency()</a> | ||||
|             </li> | ||||
|             <li id="setRawvoiceLocation"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/setRawvoiceLocation.xhtml">setRawvoiceLocation()</a> | ||||
|             </li> | ||||
|             <li id="setRawvoiceRating"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/setRawvoiceRating.xhtml">setRawvoiceRating()</a> | ||||
|             </li> | ||||
|             <li id="setRawvoiceSubscribe"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasRawvoiceTags" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasRawvoiceTags/setRawvoiceSubscribe.xhtml">setRawvoiceSubscribe()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasArtwork</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getArtwork"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork/getArtwork.xhtml">getArtwork()</a> | ||||
|             </li> | ||||
|             <li id="setArtwork"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasArtwork" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasArtwork/setArtwork.xhtml">setArtwork()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasLink</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getLink"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink/getLink.xhtml">getLink()</a> | ||||
|             </li> | ||||
|             <li id="setLink"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasLink" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasLink/setLink.xhtml">setLink()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasExplicit</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="getExplicit"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit/getExplicit.xhtml">getExplicit()</a> | ||||
|             </li> | ||||
|             <li id="setExplicit"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasExplicit" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasExplicit/setExplicit.xhtml">setExplicit()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|           <h3>Inherited from <a title="Lukaswhite\PodcastFeedParser\Traits\HasCategories" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasCategories.xhtml">Lukaswhite\PodcastFeedParser\Traits\HasCategories</a></h3> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="addCategory"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasCategories" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasCategories/addCategory.xhtml">addCategory()</a> | ||||
|             </li> | ||||
|             <li id="getCategories"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Traits\HasCategories" href="../traits/Lukaswhite_PodcastFeedParser_Traits_HasCategories/getCategories.xhtml">getCategories()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Podcast::addEpisode</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|           </li> | ||||
|           <li class="separator">addEpisode</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Podcast.php.xhtml#line71">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Podcast::</small>addEpisode</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function addEpisode(<a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Episode</a> | ||||
|         $episode ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$episode</code> | ||||
|                 — | ||||
|                 <a title="Lukaswhite\PodcastFeedParser\Episode" href="../../classes/Lukaswhite_PodcastFeedParser_Episode.xhtml">Lukaswhite\PodcastFeedParser\Episode</a></dt> | ||||
|           <dd><br/><br/><br/>      </dd> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>$this</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Podcast::getAuthor</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|           </li> | ||||
|           <li class="separator">getAuthor</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Podcast.php.xhtml#line98">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Podcast::</small>getAuthor</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getAuthor() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Podcast::getCopyright</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|           </li> | ||||
|           <li class="separator">getCopyright</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Podcast.php.xhtml#line134">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Podcast::</small>getCopyright</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getCopyright() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Podcast::getEpisodes</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|           </li> | ||||
|           <li class="separator">getEpisodes</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Podcast.php.xhtml#line62">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Podcast::</small>getEpisodes</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getEpisodes() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>array</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Podcast::getLanguage</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|           </li> | ||||
|           <li class="separator">getLanguage</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Podcast.php.xhtml#line80">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Podcast::</small>getLanguage</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getLanguage() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Podcast::getManagingEditor</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|           </li> | ||||
|           <li class="separator">getManagingEditor</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Podcast.php.xhtml#line116">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Podcast::</small>getManagingEditor</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getManagingEditor() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Podcast::setAuthor</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|           </li> | ||||
|           <li class="separator">setAuthor</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Podcast.php.xhtml#line107">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Podcast::</small>setAuthor</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setAuthor(string | ||||
|         $author ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$author</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Podcast</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Podcast::setCopyright</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|           </li> | ||||
|           <li class="separator">setCopyright</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Podcast.php.xhtml#line143">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Podcast::</small>setCopyright</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setCopyright(string | ||||
|         $copyright ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$copyright</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Podcast</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Podcast::setLanguage</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|           </li> | ||||
|           <li class="separator">setLanguage</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Podcast.php.xhtml#line89">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Podcast::</small>setLanguage</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setLanguage(string | ||||
|         $language ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$language</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Podcast</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,102 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Podcast::setManagingEditor</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser">Lukaswhite\PodcastFeedParser</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Podcast" href="../../classes/Lukaswhite_PodcastFeedParser_Podcast.xhtml">Podcast</a> | ||||
|           </li> | ||||
|           <li class="separator">setManagingEditor</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Podcast.php.xhtml#line125">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Podcast::</small>setManagingEditor</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function setManagingEditor(string | ||||
|         $managingEditor ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$managingEditor</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Podcast</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,156 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../classes.xhtml#Lukaswhite_PodcastFeedParser_Rawvoice">Lukaswhite\PodcastFeedParser\Rawvoice</a> | ||||
|           </li> | ||||
|           <li class="separator">Subscribe</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#constants">Constants</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#members">Members</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#methods">Methods</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Rawvoice/Subscribe.php.xhtml#line11">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\Rawvoice\</small>Subscribe</h1> | ||||
|         <h4>Class Subscribe</h4> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">class Subscribe | ||||
|             {<br/><ul class="none"><li>// constants</li><li>const FEED = 'feed';</li><li>const ITUNES = 'itunes';</li><li>const GOOGLEPLAY = 'googleplay';</li><li>const BLUBRRY = 'blubrry';</li><li>const HTML = 'html';</li><li>const STITCHER = 'stitcher';</li><li>const TUNEIN = 'tunein';</li></ul><ul class="none"><li>// members</li><li>protected array <a href="#members">$links</a> = | ||||
|                         ; | ||||
|                     </li></ul><ul class="none"><li>// methods</li><li>public array <a title="Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe" href="../classes/Lukaswhite_PodcastFeedParser_Rawvoice_Subscribe/getLinks.xhtml">getLinks</a>() | ||||
|                     </li><li>public ?string <a title="Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe" href="../classes/Lukaswhite_PodcastFeedParser_Rawvoice_Subscribe/getLink.xhtml">getLink</a>() | ||||
|                     </li><li>public <span title="Subscribe">Subscribe</span> <a title="Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe" href="../classes/Lukaswhite_PodcastFeedParser_Rawvoice_Subscribe/addLink.xhtml">addLink</a>() | ||||
|                     </li></ul> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|         <h2 id="constants">Constants</h2> | ||||
|         <table class="styled"> | ||||
|           <thead> | ||||
|             <tr> | ||||
|               <th>Name</th> | ||||
|               <th>Value</th> | ||||
|             </tr> | ||||
|           </thead> | ||||
|           <tbody> | ||||
|             <tr> | ||||
|               <td id="FEED">FEED</td> | ||||
|               <td>'feed'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="ITUNES">ITUNES</td> | ||||
|               <td>'itunes'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="GOOGLEPLAY">GOOGLEPLAY</td> | ||||
|               <td>'googleplay'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="BLUBRRY">BLUBRRY</td> | ||||
|               <td>'blubrry'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="HTML">HTML</td> | ||||
|               <td>'html'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="STITCHER">STITCHER</td> | ||||
|               <td>'stitcher'</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td id="TUNEIN">TUNEIN</td> | ||||
|               <td>'tunein'</td> | ||||
|             </tr> | ||||
|           </tbody> | ||||
|         </table> | ||||
|         <h2 id="members">Members</h2> | ||||
|         <div class="styled members"> | ||||
|           <h4>protected</h4> | ||||
|           <ul class="members"> | ||||
|             <li id="links"><strong>$links</strong> | ||||
|                 — | ||||
|                 array</li> | ||||
|           </ul> | ||||
|         </div> | ||||
|         <h2 id="methods">Methods</h2> | ||||
|         <div class="styled"> | ||||
|           <h4>public</h4> | ||||
|           <ul> | ||||
|             <li id="addLink"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe" href="../classes/Lukaswhite_PodcastFeedParser_Rawvoice_Subscribe/addLink.xhtml">addLink()</a> | ||||
|             </li> | ||||
|             <li id="getLink"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe" href="../classes/Lukaswhite_PodcastFeedParser_Rawvoice_Subscribe/getLink.xhtml">getLink()</a> | ||||
|             </li> | ||||
|             <li id="getLinks"> | ||||
|               <a title="Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe" href="../classes/Lukaswhite_PodcastFeedParser_Rawvoice_Subscribe/getLinks.xhtml">getLinks()</a> | ||||
|             </li> | ||||
|           </ul> | ||||
|         </div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,108 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe::addLink</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser_Rawvoice">Lukaswhite\PodcastFeedParser\Rawvoice</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe" href="../../classes/Lukaswhite_PodcastFeedParser_Rawvoice_Subscribe.xhtml">Subscribe</a> | ||||
|           </li> | ||||
|           <li class="separator">addLink</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Rawvoice/Subscribe.php.xhtml#line48">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe::</small>addLink</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function addLink(string | ||||
|         $platform, | ||||
|             string | ||||
|         $link ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$platform</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|           <dt><code>$link</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>Subscribe</dt> | ||||
|           <dd><br/> | ||||
|         </dd> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,101 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe::getLink</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser_Rawvoice">Lukaswhite\PodcastFeedParser\Rawvoice</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe" href="../../classes/Lukaswhite_PodcastFeedParser_Rawvoice_Subscribe.xhtml">Subscribe</a> | ||||
|           </li> | ||||
|           <li class="separator">getLink</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#parameter">Parameter</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Rawvoice/Subscribe.php.xhtml#line38">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe::</small>getLink</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getLink(string | ||||
|         $platform ) | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="parameterlist">Parameters</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt><code>$platform</code> | ||||
|                 — | ||||
|                 string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>string</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,90 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe::getLinks</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml">Classes</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../classes.xhtml#Lukaswhite_PodcastFeedParser_Rawvoice">Lukaswhite\PodcastFeedParser\Rawvoice</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a title="Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe" href="../../classes/Lukaswhite_PodcastFeedParser_Rawvoice_Subscribe.xhtml">Subscribe</a> | ||||
|           </li> | ||||
|           <li class="separator">getLinks</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#return">Return</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../../source/Rawvoice/Subscribe.php.xhtml#line29">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1><small>Lukaswhite\PodcastFeedParser\Rawvoice\Subscribe::</small>getLinks</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <ul/> | ||||
|         <h2 id="signature">Signature</h2> | ||||
|         <div class="styled synopsis"> | ||||
|           <code>public function getLinks() | ||||
|             </code> | ||||
|         </div> | ||||
|         <h2 id="return">Returns</h2> | ||||
|         <dl class="styled"> | ||||
|           <dt>array</dt> | ||||
|           <dd/> | ||||
|         </dl> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										
											BIN
										
									
								
								docs/html/css/SourceSansPro-Regular.ttf
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/html/css/SourceSansPro-Regular.ttf
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										184
									
								
								docs/html/css/source.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										184
									
								
								docs/html/css/source.css
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,184 @@ | |||
| table.source { | ||||
|     border:0; | ||||
|     padding:0; | ||||
|     margin:0; | ||||
|     border-collapse: collapse; | ||||
| } | ||||
| 
 | ||||
| table.source td { | ||||
|     border:1px solid #ccc; | ||||
|     vertical-align: top; | ||||
|     font-size: 1em; | ||||
|     line-height: 1.4em; | ||||
|     font-family: monospace; | ||||
| } | ||||
| 
 | ||||
| table.source td.no a { | ||||
|     display:block; | ||||
|     color: #ccc; | ||||
|     text-align: right; | ||||
|     padding: 0 8px; | ||||
|     text-decoration: none; | ||||
| } | ||||
| 
 | ||||
| table.source pre { | ||||
|     padding:0; | ||||
|     margin:0; | ||||
| } | ||||
| 
 | ||||
| table.source pre span { | ||||
|     display:inline; | ||||
| } | ||||
| 
 | ||||
| table.source td.line div { | ||||
|     padding:80px 0 0 0; | ||||
|     margin:-80px 0 0 0; | ||||
|     cursor: text; | ||||
| } | ||||
| 
 | ||||
| table.source td.line pre:hover { | ||||
|     background-color: #eee; | ||||
| } | ||||
| 
 | ||||
| table.source td.line div:target pre { | ||||
|     background-color: #ffffc8; | ||||
| } | ||||
| 
 | ||||
| .token { | ||||
|     color: #0000BB; | ||||
| } | ||||
| 
 | ||||
| .T_COMMENT, .T_DOC_COMMENT { | ||||
|     color: #FF8000; | ||||
| } | ||||
| 
 | ||||
| .T_ABSTRACT, | ||||
| .T_ARRAY, | ||||
| .T_AS, | ||||
| .T_BREAK, | ||||
| .T_CALLABLE, | ||||
| .T_CASE, | ||||
| .T_CATCH, | ||||
| .T_CLASS, | ||||
| .T_CLONE, | ||||
| .T_CONTINUE, | ||||
| .T_DEFAULT, | ||||
| .T_ECHO, | ||||
| .T_ELSE, | ||||
| .T_ELSEIF, | ||||
| .T_EMPTY, | ||||
| .T_ENDDECLARE, | ||||
| .T_ENDFOR, | ||||
| .T_ENDFOREACH, | ||||
| .T_ENDIF, | ||||
| .T_ENDSWITCH, | ||||
| .T_ENDWHILE, | ||||
| .T_EXIT, | ||||
| .T_EXTENDS, | ||||
| .T_FINAL, | ||||
| .T_FINALLY, | ||||
| .T_FOREACH, | ||||
| .T_FUNCTION, | ||||
| .T_GLOBAL, | ||||
| .T_IF, | ||||
| .T_IMPLEMENTS, | ||||
| .T_INCLUDE, | ||||
| .T_INCLUDE_ONCE, | ||||
| .T_INSTANCEOF, | ||||
| .T_INSTEADOF, | ||||
| .T_INTERFACE, | ||||
| .T_ISSET, | ||||
| .T_LOGICAL_AND, | ||||
| .T_LOGICAL_OR, | ||||
| .T_LOGICAL_XOR, | ||||
| .T_NAMESPACE, | ||||
| .T_NEW, | ||||
| .T_PRIVATE, | ||||
| .T_PROTECTED, | ||||
| .T_PUBLIC, | ||||
| .T_REQUIRE, | ||||
| .T_REQUIRE_ONCE, | ||||
| .T_RETURN, | ||||
| .T_STATIC, | ||||
| .T_THROW, | ||||
| .T_TRAIT, | ||||
| .T_TRY, | ||||
| .T_UNSET, | ||||
| .T_USE, | ||||
| .T_VAR, | ||||
| .T_WHILE, | ||||
| .T_YIELD, | ||||
| .T_PHPDOX_OPEN_BRACKET, | ||||
| .T_PHPDOX_CLOSE_BRACKET, | ||||
| .T_PHPDOX_OPEN_SQUARE, | ||||
| .T_PHPDOX_CLOSE_SQUARE, | ||||
| .T_PHPDOX_OPEN_CURLY, | ||||
| .T_PHPDOX_CLOSE_CURLY, | ||||
| .T_PHPDOX_SEMICOLON, | ||||
| .T_PHPDOX_DOT, | ||||
| .T_PHPDOX_COMMA, | ||||
| .T_PHPDOX_EQUAL, | ||||
| .T_PHPDOX_LT, | ||||
| .T_PHPDOX_GT, | ||||
| .T_PHPDOX_PLUS, | ||||
| .T_PHPDOX_MINUS, | ||||
| .T_PHPDOX_MULT, | ||||
| .T_PHPDOX_DIV, | ||||
| .T_PHPDOX_QUESTION_MARK, | ||||
| .T_PHPDOX_EXCLAMATION_MARK, | ||||
| .T_PHPDOX_COLON, | ||||
| .T_PHPDOX_DOUBLE_QUOTES, | ||||
| .T_PHPDOX_AT, | ||||
| .T_PHPDOX_AMPERSAND, | ||||
| .T_PHPDOX_PERCENT, | ||||
| .T_PHPDOX_PIPE, | ||||
| .T_PHPDOX_DOLLAR, | ||||
| .T_PHPDOX_CARET, | ||||
| .T_PHPDOX_TILDE, | ||||
| .T_PHPDOX_BACKTICK { | ||||
|     color: #007700; | ||||
| } | ||||
| 
 | ||||
| .T_CONSTANT_ENCAPSED_STRING, .T_ENCAPSED_AND_WHITESPACE { | ||||
|     color: #DD0000; | ||||
| } | ||||
| 
 | ||||
| .covered { | ||||
|     background-color: rgba(5, 238, 25, 0.13); | ||||
| } | ||||
| 
 | ||||
| a.covered:hover + div { | ||||
|     left:90px; | ||||
| } | ||||
| 
 | ||||
| .coverage_details { | ||||
|     position: absolute; | ||||
|     left:-10000px; | ||||
|     margin:-1.4em 0 0 0; | ||||
|     background-color: #eee; | ||||
|     box-shadow: 5px 5px 10px #888; | ||||
|     z-index: 1; | ||||
|     padding:1em; | ||||
| } | ||||
| 
 | ||||
| .coverage_details span { | ||||
|     font-weight: bold; | ||||
| } | ||||
| 
 | ||||
| .coverage_details ul { | ||||
|     margin:0; | ||||
|     padding:1em; | ||||
| } | ||||
| 
 | ||||
| .coverage_details:before { | ||||
|     position: absolute; | ||||
|     content:""; | ||||
|     width: 12px; | ||||
|     height: 12px; | ||||
|     top: 3px; | ||||
|     left: -6px; | ||||
|     border:0; | ||||
|     background-color: #eee; | ||||
|     transform: rotate(45deg); | ||||
|     z-index: -1; | ||||
| } | ||||
							
								
								
									
										447
									
								
								docs/html/css/style.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										447
									
								
								docs/html/css/style.css
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,447 @@ | |||
| @font-face { | ||||
|     font-family: 'Source Sans Pro'; | ||||
|     font-style: normal; | ||||
|     font-weight: 400; | ||||
|     src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(SourceSansPro-Regular.ttf) format('truetype'); | ||||
| } | ||||
| 
 | ||||
| html { | ||||
|     background-color: #888888; | ||||
| } | ||||
| 
 | ||||
| body { | ||||
|     background-color: #ffffff; | ||||
|     font-family: 'Source Sans Pro', sans-serif; | ||||
|     font-size: 1em; | ||||
|     line-height: 1.5; | ||||
|     padding-left: 0; | ||||
|     padding-right: 0; | ||||
|     padding-bottom: 0; | ||||
|     margin: 0; | ||||
| } | ||||
| 
 | ||||
| a { | ||||
|     text-decoration: none; | ||||
| } | ||||
| 
 | ||||
| a:hover { | ||||
|     text-decoration: underline; | ||||
| } | ||||
| 
 | ||||
| h1 { | ||||
|     font-size: 2em; | ||||
|     padding:3px; | ||||
|     margin:0; | ||||
| } | ||||
| 
 | ||||
| h2 { | ||||
|     font-size: 1em; | ||||
|     padding:3px; | ||||
|     margin:0; | ||||
| } | ||||
| 
 | ||||
| h3 { | ||||
|     font-size: 0.9em; | ||||
|     padding:3px; | ||||
|     margin:0; | ||||
| } | ||||
| 
 | ||||
| .topnav { | ||||
|     position: fixed; | ||||
|     display:block; | ||||
|     right: 0; | ||||
|     left: 0; | ||||
|     top:0; | ||||
|     z-index: 1337; | ||||
|     margin-bottom: 0; | ||||
|     border-bottom: 0.25em solid rgba(255,147,30,0.8); | ||||
|     background-color: rgba(238,238,238,0.8); | ||||
|     padding:0.25em; | ||||
| } | ||||
| 
 | ||||
| .logo { | ||||
|     font-style: italic; | ||||
|     margin-right:1.5em; | ||||
| } | ||||
| 
 | ||||
| .logo span { | ||||
|     position: relative; | ||||
|     top:-5px; | ||||
|     left:10px; | ||||
|     color: rgba(255,147,30,1); | ||||
| } | ||||
| 
 | ||||
| .topnav ul { | ||||
|     margin: 0; | ||||
|     padding: 0; | ||||
|     list-style-type: none; | ||||
|     width: auto; | ||||
|     position: relative; | ||||
|     display: block; | ||||
|     float:left; | ||||
| } | ||||
| .topnav li { | ||||
|     display: block; | ||||
|     float: left; | ||||
|     margin: 0; | ||||
|     padding: 0.5em; | ||||
| } | ||||
| 
 | ||||
| .topnav li.separator { | ||||
|     margin-left:1.5em; | ||||
|     margin-right:1.5em; | ||||
| } | ||||
| 
 | ||||
| .topnav li a { | ||||
|     display: block; | ||||
|     float: left; | ||||
|     color: #000000; | ||||
|     font-weight: bold; | ||||
| } | ||||
| 
 | ||||
| .topnav li a:hover { | ||||
|     color: #555555; | ||||
| } | ||||
| 
 | ||||
| #mainstage { | ||||
|     padding: 3em 0 0 1em; | ||||
|     clear: both; | ||||
| } | ||||
| 
 | ||||
| #index { | ||||
|     padding: 3em 0 0 1em; | ||||
|     background-color: #888888; | ||||
|     color: #fff; | ||||
|     margin:0; | ||||
|     min-height: 14em; | ||||
| } | ||||
| 
 | ||||
| .styled #index { | ||||
|   background: rgba(0, 0, 0, 0) none repeat scroll 0 0; | ||||
|   color: #000; | ||||
|   margin: 0; | ||||
|   min-height: 0; | ||||
|   padding: 0; | ||||
| } | ||||
| 
 | ||||
| #index h1 { | ||||
|     text-shadow: 0 -1px 0 #555555; | ||||
| } | ||||
| 
 | ||||
| #index p { | ||||
|    font-size: 0.9em; | ||||
| } | ||||
| 
 | ||||
| #index div { | ||||
|     float:left; | ||||
| } | ||||
| 
 | ||||
| #projectinfo { | ||||
|     padding-top:1em; | ||||
|     width:47em; | ||||
| } | ||||
| 
 | ||||
| #buildinfo { | ||||
|     float:right; | ||||
|     padding:1em; | ||||
|     min-height: 10em; | ||||
|     background-color: #aaaaaa; | ||||
| } | ||||
| 
 | ||||
| #buildinfo h3 { | ||||
|     font-size: 1em; | ||||
|     margin:0; | ||||
| } | ||||
| 
 | ||||
| #buildinfo p { | ||||
|     font-size: 0.7em; | ||||
|     padding:0 0 1em 0; | ||||
|     margin:0; | ||||
|     max-width: 19em; | ||||
| } | ||||
| 
 | ||||
| .column { | ||||
|     float: left; | ||||
| } | ||||
| 
 | ||||
| .indent { | ||||
|     text-indent: 1em; | ||||
| } | ||||
| 
 | ||||
| .indent2 { | ||||
|     text-indent: 2em; | ||||
| } | ||||
| 
 | ||||
| .nummeric { | ||||
|     text-align: right; | ||||
| } | ||||
| 
 | ||||
| .nummeric a { | ||||
|     display: block; | ||||
|     background-color: #CCD; | ||||
|     padding: 0 0.5em; | ||||
| } | ||||
| 
 | ||||
| .nummeric a:hover, .nummeric a:focus, .nummeric a:active { | ||||
|     background-color: #DDE; | ||||
|     outline: dotted 2px #AAB; | ||||
| } | ||||
| 
 | ||||
| .nummeric a:hover { | ||||
|     outline-style: solid; | ||||
| } | ||||
| 
 | ||||
| .nummeric a:active { | ||||
|     outline: solid 2px #667; | ||||
| } | ||||
| 
 | ||||
| .percent { | ||||
|     text-align: right; | ||||
|     width:5em; | ||||
| } | ||||
| 
 | ||||
| .wrapped { | ||||
|     white-space: pre-wrap; | ||||
|     white-space: -moz-pre-wrap; | ||||
|     white-space: -o-pre-wrap; | ||||
|     word-wrap: break-word; | ||||
| } | ||||
| 
 | ||||
| .unavailable { | ||||
|     border:1px dotted rgba(128, 36, 32, 0.10); | ||||
|     background-color: rgba(230, 10, 10, 0.05); | ||||
|     color: rgba(128, 36, 32, 0.20); | ||||
|     margin:0 1em 1em 0; | ||||
|     padding: 2px; | ||||
| } | ||||
| 
 | ||||
| .unavailable p { | ||||
|     margin: 0.2em; | ||||
|     padding: 0; | ||||
| } | ||||
| 
 | ||||
| .container { | ||||
|     margin:0 2em 1em 0; | ||||
| } | ||||
| 
 | ||||
| .box { | ||||
|     padding:1em; | ||||
|     margin:1em 1em 2em 0; | ||||
|     border: 1px solid #cccccc; | ||||
|     font-size: 1em; | ||||
|     color: #888888; | ||||
|     background-color: #eeeeee; | ||||
| } | ||||
| 
 | ||||
| .styled { | ||||
|     font-size: 1em; | ||||
|     background-color: #efefef; | ||||
|     border-top: 2px solid rgba(255,147,30,1); | ||||
|     margin:0; | ||||
|     padding: 1em 2em; | ||||
| } | ||||
| 
 | ||||
| ul.none { | ||||
|     list-style-type: none; | ||||
| } | ||||
| 
 | ||||
| ul.styled { | ||||
|     list-style-type: disc; | ||||
| } | ||||
| 
 | ||||
| ul.members li { | ||||
|     margin-bottom: 0.5em; | ||||
| } | ||||
| 
 | ||||
| .styled h4 { | ||||
|     padding:0; | ||||
|     margin:0; | ||||
|     border-bottom: 1px solid #cccccc; | ||||
| } | ||||
| 
 | ||||
| .synopsis { | ||||
|     padding:1em; | ||||
|     background-color: #efefef; | ||||
|     border-top: 2px solid rgba(255,147,30,1); | ||||
|     font-family: "Courier New", Courier, monospace; | ||||
|     width:50em; | ||||
| } | ||||
| 
 | ||||
| table.overview { | ||||
|     width:30em; | ||||
| } | ||||
| 
 | ||||
| table.styled { | ||||
|     font-size: 1em; | ||||
|     border-collapse: collapse; | ||||
|     border-spacing: 0; | ||||
|     background-color: #efefef; | ||||
|     border-top: 2px solid rgba(255,147,30,1); | ||||
|     border-bottom: 1px solid rgba(255,147,30,1); | ||||
|     margin-bottom: 1em; | ||||
| } | ||||
| 
 | ||||
| table.styled thead { | ||||
|     font-weight: normal; | ||||
|     font-size: 0.9em; | ||||
| } | ||||
| 
 | ||||
| table.styled thead tr { | ||||
|     border-bottom: 1px solid #aaaaaa; | ||||
| } | ||||
| 
 | ||||
| table.styled th { | ||||
|     text-align: left; | ||||
|     padding:5px; | ||||
|     color:#888; | ||||
| } | ||||
| 
 | ||||
| table.styled tr { | ||||
|     border-bottom: 1px solid #dddddd; | ||||
| } | ||||
| 
 | ||||
| table.styled td { | ||||
|     padding:5px; | ||||
|     font-size: 0.9em; | ||||
| } | ||||
| 
 | ||||
| td.line { | ||||
|     min-width: 4em; | ||||
| } | ||||
| 
 | ||||
| dl.styled { | ||||
|     font-size: 0.9em; | ||||
| } | ||||
| 
 | ||||
| ul.history { | ||||
|     list-style-type: none; | ||||
| } | ||||
| 
 | ||||
| ul.history li div { | ||||
|     padding: 5px; | ||||
|     margin: 0; | ||||
|     border-top: 1px solid #777777; | ||||
|     border-bottom: 1px solid #777777; | ||||
|     background-color: #ffffff; | ||||
|     font-family: monospace; | ||||
| } | ||||
| 
 | ||||
| ul.history li p { | ||||
|     padding: 0; | ||||
|     margin: 0; | ||||
|     font-size: 0.9em; | ||||
| } | ||||
| 
 | ||||
| .breadcrumb { | ||||
|     margin:0; | ||||
|     padding:0; | ||||
|     font-size: 0.9em; | ||||
| } | ||||
| 
 | ||||
| ul.breadcrumb li { | ||||
|     display: inline-block; | ||||
| } | ||||
| 
 | ||||
| ul.breadcrumb li.separator:before { | ||||
|     content: '»'; | ||||
|     padding-left:0.5em; | ||||
|     padding-right:0.5em; | ||||
| } | ||||
| 
 | ||||
| nav.box { | ||||
|     font-size: 1.2em; | ||||
|     padding: 1em; | ||||
|     margin: 0 1em 1em 0; | ||||
|     min-width:10em; | ||||
|     float:right; | ||||
| } | ||||
| 
 | ||||
| nav.box ul { | ||||
|     list-style: none outside none; | ||||
|     margin: 0; | ||||
|     padding: 0; | ||||
| } | ||||
| 
 | ||||
| nav.box ul li { | ||||
|     border-bottom: 1px solid #dddddd; | ||||
|     font-size: 0.8em; | ||||
|     margin-bottom: 0.2em; | ||||
| } | ||||
| 
 | ||||
| .styled { | ||||
|     width:50em; | ||||
| } | ||||
| 
 | ||||
| #mainstage section { | ||||
|     float: left; | ||||
|     margin: 0 0 2em 1em; | ||||
|     padding: 0; | ||||
|     font-size: 1em; | ||||
|     max-width: 50em; | ||||
| } | ||||
| 
 | ||||
| #mainstage section h1 { | ||||
|     margin: 0; | ||||
|     padding: 0; | ||||
| } | ||||
| 
 | ||||
| #mainstage section h2 { | ||||
|     margin: 0; | ||||
|     padding: 2em 0 0 0; | ||||
| } | ||||
| 
 | ||||
| section table { | ||||
|     width:100%; | ||||
| } | ||||
| 
 | ||||
| footer { | ||||
|     display:block; | ||||
|     clear: both; | ||||
|     overflow: auto; | ||||
|     border-top: 0.25em solid rgba(255,147,30,1); | ||||
|     background-color: #888888; | ||||
|     margin:0; | ||||
| } | ||||
| 
 | ||||
| footer span { | ||||
|     color:#ffffff; | ||||
|     padding: 0 0.75em; | ||||
|     font-size: 0.8em; | ||||
| } | ||||
| 
 | ||||
| /* enrichment */ | ||||
| .testresult-PASSED { | ||||
|     color:darkgreen; | ||||
| } | ||||
| 
 | ||||
| .testresult-EMPTY { | ||||
|     color: rgba(0, 100, 0, 0.20); | ||||
| } | ||||
| 
 | ||||
| .testresult-FAILED { | ||||
|    color:darkred; | ||||
| } | ||||
| 
 | ||||
| .testresult-SKIPPED { | ||||
|     color: #afafaf; | ||||
| } | ||||
| 
 | ||||
| .path { | ||||
|     margin:0; | ||||
|     padding:0; | ||||
|     font-size: 0.9em; | ||||
| } | ||||
| 
 | ||||
| ul.path li { | ||||
|     display: inline-block; | ||||
| } | ||||
| 
 | ||||
| ul.path li.separator:before { | ||||
|     content: '/'; | ||||
|     /*padding-left:0.5em; | ||||
|     padding-right:0.5em;*/ | ||||
| } | ||||
| 
 | ||||
| .directory tr td:first-of-type { | ||||
|     padding-left:1em; | ||||
| } | ||||
							
								
								
									
										302
									
								
								docs/html/index.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										302
									
								
								docs/html/index.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,302 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Overview</title> | ||||
|     <link rel="stylesheet" type="text/css" href="css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="index"> | ||||
|       <div id="projectinfo"> | ||||
|         <h1>Podcast Feed Parser</h1> | ||||
|         <h2>Software Documentation</h2> | ||||
|         <p>Welcome to the Software Documentation homepage.</p> | ||||
|       </div> | ||||
|       <div id="buildinfo"> | ||||
|         <h3>Build</h3> | ||||
|         <p>Fri, 04 Dec 2020 01:57:01 +0000</p> | ||||
|         <h3>VCS Info</h3> | ||||
|         <p> | ||||
|                     tag: <br/> | ||||
|                     branch: </p> | ||||
|         <h3>Used Enrichers</h3> | ||||
|         <p>build, phploc</p> | ||||
|       </div> | ||||
|     </div> | ||||
|     <div id="mainstage"> | ||||
|       <div class="column"> | ||||
|         <div class="container"> | ||||
|           <h2>Structure</h2> | ||||
|           <table class="styled overview"> | ||||
|             <tr> | ||||
|               <td>Namespaces</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Interfaces</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Traits</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Classes</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Abstract Classes</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Concrete Classes</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Methods</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Scope</td> | ||||
|               <td/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent2">Non-Static Methods</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent2">Static Methods</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Visibility</td> | ||||
|               <td/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent2">Public Method</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent2">Non-Public Methods</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Functions</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Named Functions</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Anonymous Functions</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Constants</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Global Constants</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Class Constants</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|           </table> | ||||
|         </div> | ||||
|         <div class="container"> | ||||
|           <h2>Tests</h2> | ||||
|           <table class="styled overview"> | ||||
|             <tr> | ||||
|               <td>Classes</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent"/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Methods</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent"/> | ||||
|             </tr> | ||||
|           </table> | ||||
|         </div> | ||||
|       </div> | ||||
|       <div class="column"> | ||||
|         <div class="container"> | ||||
|           <h2>Size</h2> | ||||
|           <table class="styled overview"> | ||||
|             <tr> | ||||
|               <td>Lines of Code (LOC)</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Comment Lines of Code (CLOC)</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Non-Comment Lines of Code (NCLOC)</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Logical Lines of Code (LLOC)</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Classes</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Average Class Length</td> | ||||
|               <td class="nummeric">NaN</td> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Average Method Length</td> | ||||
|               <td class="nummeric">NaN</td> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Functions</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Average Function Length</td> | ||||
|               <td class="nummeric">NaN</td> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Not in classes or functions</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|           </table> | ||||
|         </div> | ||||
|         <div class="container"> | ||||
|           <h2>Complexity</h2> | ||||
|           <table class="styled overview"> | ||||
|             <tr> | ||||
|               <td>Cyclomatic Complexity / LLOC</td> | ||||
|               <td class="nummeric">0</td> | ||||
|               <td class="percent"/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Cyclomatic Complexity / Number of Methods</td> | ||||
|               <td class="nummeric">0</td> | ||||
|               <td class="percent"/> | ||||
|             </tr> | ||||
|           </table> | ||||
|         </div> | ||||
|         <div class="container"> | ||||
|           <h2>Dependencies</h2> | ||||
|           <table class="styled overview"> | ||||
|             <tr> | ||||
|               <td>Global Accesses</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Global Constants</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Global Variables</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Super-Global Variables</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Attribute Accesses</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Non-Static</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Static</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td>Method Calls</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td/> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Non-Static</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|             <tr> | ||||
|               <td class="indent">Static</td> | ||||
|               <td class="nummeric"/> | ||||
|               <td class="percent">(0%)</td> | ||||
|             </tr> | ||||
|           </table> | ||||
|         </div> | ||||
|       </div> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										62
									
								
								docs/html/interfaces.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										62
									
								
								docs/html/interfaces.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,62 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Overview</title> | ||||
|     <link rel="stylesheet" type="text/css" href="css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <h1>Interfaces</h1> | ||||
|       <div class="container"> | ||||
|         <h2 id="Lukaswhite_PodcastFeedParser_Contracts">\Lukaswhite\PodcastFeedParser\Contracts</h2> | ||||
|         <table class="styled"> | ||||
|           <thead> | ||||
|             <tr> | ||||
|               <th>Name</th> | ||||
|               <th>Description</th> | ||||
|             </tr> | ||||
|           </thead> | ||||
|           <tbody> | ||||
|             <tr> | ||||
|               <td> | ||||
|                 <a href="interfaces/Lukaswhite_PodcastFeedParser_Contracts_HasArtwork.xhtml">HasArtwork</a> | ||||
|               </td> | ||||
|               <td> | ||||
|                 <span class="unavailable">No description available</span> | ||||
|               </td> | ||||
|             </tr> | ||||
|           </tbody> | ||||
|         </table> | ||||
|       </div> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
|  | @ -0,0 +1,81 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Lukaswhite\PodcastFeedParser\Contracts\HasArtwork</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../interfaces.xhtml">Interfaces</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../interfaces.xhtml#Lukaswhite_PodcastFeedParser_Contracts">Lukaswhite\PodcastFeedParser\Contracts</a> | ||||
|           </li> | ||||
|           <li class="separator">HasArtwork</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <nav class="box"> | ||||
|         <ul> | ||||
|           <li> | ||||
|             <a href="#introduction">Introduction</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#synopsis">Synopsis</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="#violations">Violations</a> | ||||
|           </li> | ||||
|           <li> | ||||
|             <a href="../source/Contracts/HasArtwork.php.xhtml#line7">Source</a> | ||||
|           </li> | ||||
|         </ul> | ||||
|       </nav> | ||||
|       <section> | ||||
|         <h1 id="introduction"><small>Lukaswhite\PodcastFeedParser\Contracts\</small>HasArtwork</h1> | ||||
|         <h4/> | ||||
|         <p/> | ||||
|         <h2 id="synopsis">Synopsis</h2> | ||||
|         <div class="synopsis">interface HasArtwork | ||||
|             {<br/> | ||||
| 
 | ||||
|             }<br/></div> | ||||
|       </section> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										103
									
								
								docs/html/namespaces.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										103
									
								
								docs/html/namespaces.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,103 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Overview</title> | ||||
|     <link rel="stylesheet" type="text/css" href="css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <h1>Namespaces</h1> | ||||
|       <div class="container"> | ||||
|         <h2>Namespaces</h2> | ||||
|         <table class="styled"> | ||||
|           <thead> | ||||
|             <tr> | ||||
|               <th>Name</th> | ||||
|               <th>Interfaces</th> | ||||
|               <th>Classes</th> | ||||
|               <th>Traits</th> | ||||
|             </tr> | ||||
|           </thead> | ||||
|           <tr> | ||||
|             <td>\</td> | ||||
|             <td class="nummeric">0</td> | ||||
|             <td class="nummeric"> | ||||
|               <a href="classes.xhtml#">1</a> | ||||
|             </td> | ||||
|             <td class="nummeric">0</td> | ||||
|           </tr> | ||||
|           <tr> | ||||
|             <td>\Lukaswhite\PodcastFeedParser</td> | ||||
|             <td class="nummeric">0</td> | ||||
|             <td class="nummeric"> | ||||
|               <a href="classes.xhtml#Lukaswhite_PodcastFeedParser">8</a> | ||||
|             </td> | ||||
|             <td class="nummeric">0</td> | ||||
|           </tr> | ||||
|           <tr> | ||||
|             <td>\Lukaswhite\PodcastFeedParser\Contracts</td> | ||||
|             <td class="nummeric"> | ||||
|               <a href="interfaces.xhtml#Lukaswhite_PodcastFeedParser_Contracts">1</a> | ||||
|             </td> | ||||
|             <td class="nummeric">0</td> | ||||
|             <td class="nummeric">0</td> | ||||
|           </tr> | ||||
|           <tr> | ||||
|             <td>\Lukaswhite\PodcastFeedParser\Exceptions</td> | ||||
|             <td class="nummeric">0</td> | ||||
|             <td class="nummeric"> | ||||
|               <a href="classes.xhtml#Lukaswhite_PodcastFeedParser_Exceptions">2</a> | ||||
|             </td> | ||||
|             <td class="nummeric">0</td> | ||||
|           </tr> | ||||
|           <tr> | ||||
|             <td>\Lukaswhite\PodcastFeedParser\Rawvoice</td> | ||||
|             <td class="nummeric">0</td> | ||||
|             <td class="nummeric"> | ||||
|               <a href="classes.xhtml#Lukaswhite_PodcastFeedParser_Rawvoice">1</a> | ||||
|             </td> | ||||
|             <td class="nummeric">0</td> | ||||
|           </tr> | ||||
|           <tr> | ||||
|             <td>\Lukaswhite\PodcastFeedParser\Traits</td> | ||||
|             <td class="nummeric">0</td> | ||||
|             <td class="nummeric">0</td> | ||||
|             <td class="nummeric"> | ||||
|               <a href="traits.xhtml#Lukaswhite_PodcastFeedParser_Traits">12</a> | ||||
|             </td> | ||||
|           </tr> | ||||
|         </table> | ||||
|       </div> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										3
									
								
								docs/html/source/Artwork.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								docs/html/source/Artwork.php.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | |||
| <?xml version="1.0"?> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><title>phpDox - Source of Artwork.php</title><link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/><link rel="stylesheet" href="../css/source.css"/><meta http-equiv="content-type" content="text/html; charset=utf-8"/></head><body><nav class="topnav"><ul><li><div class="logo"><span>/**</span>phpDox</div></li><li class="separator"><a href="../index.xhtml">Overview</a></li><li class="separator"><a href="../namespaces.xhtml">Namespaces</a></li><li><a href="../interfaces.xhtml">Interfaces</a></li><li><a href="../classes.xhtml">Classes</a></li><li><a href="../traits.xhtml">Traits</a></li><li class="separator"><a href="../source/index.xhtml">Source</a></li></ul></nav><div id="mainstage"><div class="box"><ul class="breadcrumb"><li><a href="../index.xhtml">Overview</a></li><li class="separator"><a href="../source/index.xhtml">Source</a></li></ul></div><h1>Source of file Artwork.php</h1><p> | ||||
|                         Size: 0,135 Bytes - Last Modified: 2020-12-03T03:00:32+00:00</p><section><h2><small>/home/vagrant/Code/projects/podcast-feed-parser/src/</small>Artwork.php</h2><table class="source"><tr><td class="no"><a class="anker" href="#line1">1</a><a class="anker" href="#line2">2</a><a class="anker" href="#line3">3</a><a class="anker" href="#line4">4</a><a class="anker" href="#line5">5</a><a class="anker" href="#line6">6</a><a class="anker" href="#line7">7</a><a class="anker" href="#line8">8</a><a class="anker" href="#line9">9</a><a class="anker" href="#line10">10</a><a class="anker" href="#line11">11</a></td><td class="line"><div id="line1"><pre><span class="token T_OPEN_TAG"><?php</span></pre></div><div id="line2"><br/></div><div id="line3"><pre><span class="token T_NAMESPACE">namespace</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">Lukaswhite</span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">PodcastFeedParser</span><span class="token T_PHPDOX_SEMICOLON">;</span></pre></div><div id="line4"><br/></div><div id="line5"><pre><span class="token T_USE">use</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">Lukaswhite</span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">PodcastFeedParser</span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">Traits</span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">HasUri</span><span class="token T_PHPDOX_SEMICOLON">;</span></pre></div><div id="line6"><br/></div><div id="line7"><pre><span class="token T_CLASS">class</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">Artwork</span></pre></div><div id="line8"><pre><span class="token T_PHPDOX_OPEN_CURLY">{</span></pre></div><div id="line9"><pre><span class="token T_WHITESPACE">    </span><span class="token T_USE">use</span><span class="token T_WHITESPACE">     </span><span class="token T_STRING">HasUri</span><span class="token T_PHPDOX_SEMICOLON">;</span></pre></div><div id="line10"><br/></div><div id="line11"><pre><span class="token T_PHPDOX_CLOSE_CURLY">}</span></pre></div></td></tr></table></section></div><footer><span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span></footer></body></html> | ||||
							
								
								
									
										3
									
								
								docs/html/source/Category.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								docs/html/source/Category.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										3
									
								
								docs/html/source/Contracts/HasArtwork.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								docs/html/source/Contracts/HasArtwork.php.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | |||
| <?xml version="1.0"?> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><title>phpDox - Source of HasArtwork.php</title><link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/><link rel="stylesheet" href="../../css/source.css"/><meta http-equiv="content-type" content="text/html; charset=utf-8"/></head><body><nav class="topnav"><ul><li><div class="logo"><span>/**</span>phpDox</div></li><li class="separator"><a href="../../index.xhtml">Overview</a></li><li class="separator"><a href="../../namespaces.xhtml">Namespaces</a></li><li><a href="../../interfaces.xhtml">Interfaces</a></li><li><a href="../../classes.xhtml">Classes</a></li><li><a href="../../traits.xhtml">Traits</a></li><li class="separator"><a href="../../source/index.xhtml">Source</a></li></ul></nav><div id="mainstage"><div class="box"><ul class="breadcrumb"><li><a href="../../index.xhtml">Overview</a></li><li class="separator"><a href="../../source/index.xhtml">Source</a></li></ul></div><h1>Source of file HasArtwork.php</h1><p> | ||||
|                         Size: 0,085 Bytes - Last Modified: 2020-12-03T03:01:51+00:00</p><section><h2><small>/home/vagrant/Code/projects/podcast-feed-parser/src/Contracts/</small>HasArtwork.php</h2><table class="source"><tr><td class="no"><a class="anker" href="#line1">1</a><a class="anker" href="#line2">2</a><a class="anker" href="#line3">3</a><a class="anker" href="#line4">4</a><a class="anker" href="#line5">5</a><a class="anker" href="#line6">6</a><a class="anker" href="#line7">7</a><a class="anker" href="#line8">8</a><a class="anker" href="#line9">9</a><a class="anker" href="#line10">10</a></td><td class="line"><div id="line1"><pre><span class="token T_OPEN_TAG"><?php</span></pre></div><div id="line2"><br/></div><div id="line3"><br/></div><div id="line4"><pre><span class="token T_NAMESPACE">namespace</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">Lukaswhite</span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">PodcastFeedParser</span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">Contracts</span><span class="token T_PHPDOX_SEMICOLON">;</span></pre></div><div id="line5"><br/></div><div id="line6"><br/></div><div id="line7"><pre><span class="token T_INTERFACE">interface</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">HasArtwork</span></pre></div><div id="line8"><pre><span class="token T_PHPDOX_OPEN_CURLY">{</span></pre></div><div id="line9"><br/></div><div id="line10"><pre><span class="token T_PHPDOX_CLOSE_CURLY">}</span></pre></div></td></tr></table></section></div><footer><span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span></footer></body></html> | ||||
							
								
								
									
										84
									
								
								docs/html/source/Contracts/index.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										84
									
								
								docs/html/source/Contracts/index.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,84 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Overview</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../source/index.xhtml">Source</a> | ||||
|           </li> | ||||
|           <li class="separator">Contracts</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <h1>Source of Podcast Feed Parser</h1> | ||||
|       <p> | ||||
|                         This project consists of 5 directories, containing | ||||
|                         a total of 24 files. | ||||
|                     </p> | ||||
|       <ul class="path"> | ||||
|         <li> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|         <li class="separator"> Contracts</li> | ||||
|       </ul> | ||||
|       <table class="styled directory"> | ||||
|         <tr> | ||||
|           <th>Name</th> | ||||
|           <th>Size</th> | ||||
|           <th>Last Modified</th> | ||||
|         </tr> | ||||
|         <tr> | ||||
|           <td> | ||||
|             <a href="HasArtwork.php.xhtml">HasArtwork.php</a> | ||||
|           </td> | ||||
|           <td>85 Bytes | ||||
|                 </td> | ||||
|           <td>2020-12-03T03:01:51+00:00</td> | ||||
|         </tr> | ||||
|         <tr> | ||||
|           <td colspan="3"> | ||||
|             <small> | ||||
|                                     Total: 1 files</small> | ||||
|           </td> | ||||
|         </tr> | ||||
|       </table> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span/> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										3
									
								
								docs/html/source/Episode.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								docs/html/source/Episode.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							|  | @ -0,0 +1,3 @@ | |||
| <?xml version="1.0"?> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><title>phpDox - Source of FileNotFoundException.php</title><link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/><link rel="stylesheet" href="../../css/source.css"/><meta http-equiv="content-type" content="text/html; charset=utf-8"/></head><body><nav class="topnav"><ul><li><div class="logo"><span>/**</span>phpDox</div></li><li class="separator"><a href="../../index.xhtml">Overview</a></li><li class="separator"><a href="../../namespaces.xhtml">Namespaces</a></li><li><a href="../../interfaces.xhtml">Interfaces</a></li><li><a href="../../classes.xhtml">Classes</a></li><li><a href="../../traits.xhtml">Traits</a></li><li class="separator"><a href="../../source/index.xhtml">Source</a></li></ul></nav><div id="mainstage"><div class="box"><ul class="breadcrumb"><li><a href="../../index.xhtml">Overview</a></li><li class="separator"><a href="../../source/index.xhtml">Source</a></li></ul></div><h1>Source of file FileNotFoundException.php</h1><p> | ||||
|                         Size: 0,112 Bytes - Last Modified: 2020-12-03T04:16:53+00:00</p><section><h2><small>/home/vagrant/Code/projects/podcast-feed-parser/src/Exceptions/</small>FileNotFoundException.php</h2><table class="source"><tr><td class="no"><a class="anker" href="#line1">1</a><a class="anker" href="#line2">2</a><a class="anker" href="#line3">3</a><a class="anker" href="#line4">4</a><a class="anker" href="#line5">5</a><a class="anker" href="#line6">6</a><a class="anker" href="#line7">7</a><a class="anker" href="#line8">8</a><a class="anker" href="#line9">9</a><a class="anker" href="#line10">10</a></td><td class="line"><div id="line1"><pre><span class="token T_OPEN_TAG"><?php</span></pre></div><div id="line2"><br/></div><div id="line3"><br/></div><div id="line4"><pre><span class="token T_NAMESPACE">namespace</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">Lukaswhite</span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">PodcastFeedParser</span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">Exceptions</span><span class="token T_PHPDOX_SEMICOLON">;</span></pre></div><div id="line5"><br/></div><div id="line6"><br/></div><div id="line7"><pre><span class="token T_CLASS">class</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">FileNotFoundException</span><span class="token T_WHITESPACE"> </span><span class="token T_EXTENDS">extends</span><span class="token T_WHITESPACE"> </span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">Exception</span></pre></div><div id="line8"><pre><span class="token T_PHPDOX_OPEN_CURLY">{</span></pre></div><div id="line9"><br/></div><div id="line10"><pre><span class="token T_PHPDOX_CLOSE_CURLY">}</span></pre></div></td></tr></table></section></div><footer><span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span></footer></body></html> | ||||
|  | @ -0,0 +1,3 @@ | |||
| <?xml version="1.0"?> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><title>phpDox - Source of InvalidXmlException.php</title><link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/><link rel="stylesheet" href="../../css/source.css"/><meta http-equiv="content-type" content="text/html; charset=utf-8"/></head><body><nav class="topnav"><ul><li><div class="logo"><span>/**</span>phpDox</div></li><li class="separator"><a href="../../index.xhtml">Overview</a></li><li class="separator"><a href="../../namespaces.xhtml">Namespaces</a></li><li><a href="../../interfaces.xhtml">Interfaces</a></li><li><a href="../../classes.xhtml">Classes</a></li><li><a href="../../traits.xhtml">Traits</a></li><li class="separator"><a href="../../source/index.xhtml">Source</a></li></ul></nav><div id="mainstage"><div class="box"><ul class="breadcrumb"><li><a href="../../index.xhtml">Overview</a></li><li class="separator"><a href="../../source/index.xhtml">Source</a></li></ul></div><h1>Source of file InvalidXmlException.php</h1><p> | ||||
|                         Size: 0,110 Bytes - Last Modified: 2020-12-03T04:23:35+00:00</p><section><h2><small>/home/vagrant/Code/projects/podcast-feed-parser/src/Exceptions/</small>InvalidXmlException.php</h2><table class="source"><tr><td class="no"><a class="anker" href="#line1">1</a><a class="anker" href="#line2">2</a><a class="anker" href="#line3">3</a><a class="anker" href="#line4">4</a><a class="anker" href="#line5">5</a><a class="anker" href="#line6">6</a><a class="anker" href="#line7">7</a><a class="anker" href="#line8">8</a><a class="anker" href="#line9">9</a><a class="anker" href="#line10">10</a></td><td class="line"><div id="line1"><pre><span class="token T_OPEN_TAG"><?php</span></pre></div><div id="line2"><br/></div><div id="line3"><br/></div><div id="line4"><pre><span class="token T_NAMESPACE">namespace</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">Lukaswhite</span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">PodcastFeedParser</span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">Exceptions</span><span class="token T_PHPDOX_SEMICOLON">;</span></pre></div><div id="line5"><br/></div><div id="line6"><br/></div><div id="line7"><pre><span class="token T_CLASS">class</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">InvalidXmlException</span><span class="token T_WHITESPACE"> </span><span class="token T_EXTENDS">extends</span><span class="token T_WHITESPACE"> </span><span class="token T_NS_SEPARATOR">\</span><span class="token T_STRING">Exception</span></pre></div><div id="line8"><pre><span class="token T_PHPDOX_OPEN_CURLY">{</span></pre></div><div id="line9"><br/></div><div id="line10"><pre><span class="token T_PHPDOX_CLOSE_CURLY">}</span></pre></div></td></tr></table></section></div><footer><span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span></footer></body></html> | ||||
							
								
								
									
										92
									
								
								docs/html/source/Exceptions/index.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										92
									
								
								docs/html/source/Exceptions/index.xhtml
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,92 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE html SYSTEM "about:legacy-compat"> | ||||
| <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||||
|   <head> | ||||
|     <title>phpDox - Overview</title> | ||||
|     <link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/> | ||||
|     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> | ||||
|   </head> | ||||
|   <body> | ||||
|     <nav class="topnav"> | ||||
|       <ul> | ||||
|         <li> | ||||
|           <div class="logo"><span>/**</span>phpDox</div> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../index.xhtml">Overview</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../namespaces.xhtml">Namespaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../interfaces.xhtml">Interfaces</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../classes.xhtml">Classes</a> | ||||
|         </li> | ||||
|         <li> | ||||
|           <a href="../../traits.xhtml">Traits</a> | ||||
|         </li> | ||||
|         <li class="separator"> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|       </ul> | ||||
|     </nav> | ||||
|     <div id="mainstage"> | ||||
|       <div class="box"> | ||||
|         <ul class="breadcrumb"> | ||||
|           <li> | ||||
|             <a href="../../index.xhtml">Overview</a> | ||||
|           </li> | ||||
|           <li class="separator"> | ||||
|             <a href="../../source/index.xhtml">Source</a> | ||||
|           </li> | ||||
|           <li class="separator">Exceptions</li> | ||||
|         </ul> | ||||
|       </div> | ||||
|       <h1>Source of Podcast Feed Parser</h1> | ||||
|       <p> | ||||
|                         This project consists of 5 directories, containing | ||||
|                         a total of 24 files. | ||||
|                     </p> | ||||
|       <ul class="path"> | ||||
|         <li> | ||||
|           <a href="../../source/index.xhtml">Source</a> | ||||
|         </li> | ||||
|         <li class="separator"> Exceptions</li> | ||||
|       </ul> | ||||
|       <table class="styled directory"> | ||||
|         <tr> | ||||
|           <th>Name</th> | ||||
|           <th>Size</th> | ||||
|           <th>Last Modified</th> | ||||
|         </tr> | ||||
|         <tr> | ||||
|           <td> | ||||
|             <a href="FileNotFoundException.php.xhtml">FileNotFoundException.php</a> | ||||
|           </td> | ||||
|           <td>112 Bytes | ||||
|                 </td> | ||||
|           <td>2020-12-03T04:16:53+00:00</td> | ||||
|         </tr> | ||||
|         <tr> | ||||
|           <td> | ||||
|             <a href="InvalidXmlException.php.xhtml">InvalidXmlException.php</a> | ||||
|           </td> | ||||
|           <td>110 Bytes | ||||
|                 </td> | ||||
|           <td>2020-12-03T04:23:35+00:00</td> | ||||
|         </tr> | ||||
|         <tr> | ||||
|           <td colspan="3"> | ||||
|             <small> | ||||
|                                     Total: 2 files</small> | ||||
|           </td> | ||||
|         </tr> | ||||
|       </table> | ||||
|     </div> | ||||
|     <footer> | ||||
|       <span/> | ||||
|     </footer> | ||||
|   </body> | ||||
| </html> | ||||
							
								
								
									
										3
									
								
								docs/html/source/Link.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								docs/html/source/Link.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										3
									
								
								docs/html/source/Media.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								docs/html/source/Media.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										3
									
								
								docs/html/source/Owner.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								docs/html/source/Owner.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										3
									
								
								docs/html/source/Parser.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								docs/html/source/Parser.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										3
									
								
								docs/html/source/Podcast.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								docs/html/source/Podcast.php.xhtml
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
		Reference in New Issue
	
	Block a user