Repository URL to install this package:
|
Version:
1.0.0 ▾
|
<?php
namespace Modules\Core\Repositories;
interface WidgetRepository
{
/**
* Find the saved state of widgets for the given user id
* @param int $userId
* @return string
*/
public function findForUser($userId);
/**
* Update or create the given widgets for given user
* @param array $widgets
* @return void
*/
public function updateOrCreateForUser($widgets, $userId);
}