https://github.com/PressForward/pressforward
Raw File
Tip revision: a1481911c6e64f7414732d2209163491ce950267 authored by Aram Zucker-Scharff on 24 May 2017, 17:29:18 UTC
Readability optimizations
Tip revision: a148191
SystemUsers.php
<?php
namespace PressForward\Interfaces;
interface SystemUsers {

	public function did_user_nominate( $post_id, $user_id);
	public function get_user_option( $option );
	public function current_user_can( $capacity );
	public function user_level( $option_name, $role );
}
back to top