Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
F
ffs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
beardedwarrior
ffs
Commits
cdc203fb
Commit
cdc203fb
authored
Oct 12, 2018
by
beardedwarrior
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added ide helper docblocks to the models
parent
e7e6430c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
63 additions
and
0 deletions
+63
-0
app/Deposit.php
app/Deposit.php
+22
-0
app/Project.php
app/Project.php
+19
-0
app/User.php
app/User.php
+22
-0
No files found.
app/Deposit.php
View file @
cdc203fb
...
...
@@ -4,6 +4,28 @@ namespace App;
use
Illuminate\Database\Eloquent\Model
;
/**
* App\Deposit
*
* @property int $id
* @property string $payment_id
* @property string $amount
* @property string $time_received
* @property string $tx_id
* @property int $block_received
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Project $project
* @method static \Illuminate\Database\Eloquent\Builder|\App\Deposit whereAmount($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Deposit whereBlockReceived($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Deposit whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Deposit whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Deposit wherePaymentId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Deposit whereTimeReceived($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Deposit whereTxId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Deposit whereUpdatedAt($value)
* @mixin \Eloquent
*/
class
Deposit
extends
Model
{
/**
...
...
app/Project.php
View file @
cdc203fb
...
...
@@ -4,6 +4,25 @@ namespace App;
use
Illuminate\Database\Eloquent\Model
;
/**
* App\Project
*
* @property int $id
* @property string $payment_id
* @property string $target_amount
* @property string $status
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Deposit[] $deposits
* @property-read mixed $amount_received
* @method static \Illuminate\Database\Eloquent\Builder|\App\Project whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Project whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Project wherePaymentId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Project whereStatus($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Project whereTargetAmount($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Project whereUpdatedAt($value)
* @mixin \Eloquent
*/
class
Project
extends
Model
{
/**
...
...
app/User.php
View file @
cdc203fb
...
...
@@ -6,6 +6,28 @@ use Illuminate\Notifications\Notifiable;
use
Illuminate\Contracts\Auth\MustVerifyEmail
;
use
Illuminate\Foundation\Auth\User
as
Authenticatable
;
/**
* App\User
*
* @property int $id
* @property string $name
* @property string $email
* @property string|null $email_verified_at
* @property string $password
* @property string|null $remember_token
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereEmailVerifiedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereUpdatedAt($value)
* @mixin \Eloquent
*/
class
User
extends
Authenticatable
{
use
Notifiable
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment