PortableInfobox/includes/services/Parser/Nodes/NodeAudio.php
2018-08-16 11:25:53 +02:00

26 lines
326 B
PHP

<?php
namespace PortableInfobox\Parser\Nodes;
class NodeAudio extends NodeMedia {
/*
* @return bool
*/
protected function allowImage() {
return false;
}
/*
* @return bool
*/
protected function allowVideo() {
return false;
}
/*
* @return bool
*/
protected function allowAudio() {
return true;
}
}