mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/12715] Cleanup comments in \phpbb\mimetype\*
PHPBB3-12715
This commit is contained in:
parent
0d0465bc08
commit
03ad0b3e08
4 changed files with 7 additions and 7 deletions
|
@ -16,7 +16,7 @@ namespace phpbb\mimetype;
|
||||||
class content_guesser extends guesser_base
|
class content_guesser extends guesser_base
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_supported()
|
public function is_supported()
|
||||||
{
|
{
|
||||||
|
@ -24,7 +24,7 @@ class content_guesser extends guesser_base
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function guess($file, $file_name = '')
|
public function guess($file, $file_name = '')
|
||||||
{
|
{
|
||||||
|
|
|
@ -470,7 +470,7 @@ class extension_guesser extends guesser_base
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function is_supported()
|
public function is_supported()
|
||||||
{
|
{
|
||||||
|
@ -478,7 +478,7 @@ class extension_guesser extends guesser_base
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function guess($file, $file_name = '')
|
public function guess($file, $file_name = '')
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,7 +21,7 @@ class guesser
|
||||||
const PRIORITY_DEFAULT = 0;
|
const PRIORITY_DEFAULT = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var mimetype guessers
|
* @var array guessers
|
||||||
*/
|
*/
|
||||||
protected $guessers;
|
protected $guessers;
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ abstract class guesser_base implements guesser_interface
|
||||||
protected $priority;
|
protected $priority;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function get_priority()
|
public function get_priority()
|
||||||
{
|
{
|
||||||
|
@ -29,7 +29,7 @@ abstract class guesser_base implements guesser_interface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function set_priority($priority)
|
public function set_priority($priority)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue