mirror of
https://gh.wpcy.net/https://github.com/WordPress/wordpress.org.git
synced 2026-04-30 06:42:28 +08:00
git-svn-id: https://meta.svn.wordpress.org/sites/trunk@1122 74240141-8908-4e6f-9713-ba540dce6ec7
9 lines
110 B
PHP
9 lines
110 B
PHP
<?php
|
|
|
|
namespace Dotorg\Slack;
|
|
|
|
interface User {
|
|
public function get_icon();
|
|
public function get_name();
|
|
}
|
|
|