Skip to content

Commit 918354a

Browse files
committed
Rename Model to Whisper and make an initial working model
It performs some basic operations without erroring altrough it doesn't do any whisper-special things
1 parent 034fedf commit 918354a

File tree

3 files changed

+887
-300
lines changed

3 files changed

+887
-300
lines changed

src/ClientInterface.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace LaravelWhisper\Whisper;
4+
5+
interface ClientInterface
6+
{
7+
public static function find($identifier) : array;
8+
9+
public static function all() : array;
10+
11+
public static function update($identifier, array $data) : void;
12+
13+
public static function delete($identifier) : ?bool;
14+
15+
public static function create(array $data) : array;
16+
}

src/Model.php

Lines changed: 0 additions & 300 deletions
This file was deleted.

0 commit comments

Comments
 (0)