# assistant/0.3.1/backend/src/System/Contracts/RepositoryAbstract.php

Assistant – Every Day Productivity Apps, version 0.3.1. 23 lines.

- Page: https://pluginprobe.com/plugins/assistant/0.3.1/code/backend/src/System/Contracts/RepositoryAbstract.php
- Raw: https://pluginprobe.com/plugins/assistant/0.3.1/raw/backend/src/System/Contracts/RepositoryAbstract.php
- Modified: 2020-03-25T19:33:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/assistant/0.3.1/code/backend/src/System/Contracts/RepositoryAbstract.php#L10-L20`.

```php
<?php


namespace FL\Assistant\System\Contracts;



abstract class RepositoryAbstract {


	abstract public function find( $id, callable $transform = null );

	abstract public function find_where( array $args = [], callable $transform = null );

	abstract public function paginate( array $args = [], callable $transform = null  );

	abstract public function query( array $args = [] );




}

```
