mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 09:37:26 +00:00
16 lines
266 B
PHP
16 lines
266 B
PHP
<?php
|
|
|
|
class TeamActions extends Actions
|
|
{
|
|
/**
|
|
* A team member's page
|
|
*
|
|
* @param string $slug
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function executeBio(string $slug)
|
|
{
|
|
return ['content/bio', ['slug' => $slug]];
|
|
}
|
|
}
|