13 lines
199 B
PHP
13 lines
199 B
PHP
|
<?php
|
||
|
|
||
|
namespace Controllers;
|
||
|
|
||
|
use Models\Post;
|
||
|
|
||
|
class Posts
|
||
|
{
|
||
|
public static function create_post($post, $user_id)
|
||
|
{
|
||
|
return Post::create(['post'=>$post, 'user_id'=>$user_id]);
|
||
|
}
|
||
|
}
|