@@ -17,17 +17,17 @@ discard block |
||
17 | 17 | * |
18 | 18 | * @return void |
19 | 19 | */ |
20 | - public function boot() |
|
20 | + public function boot () |
|
21 | 21 | { |
22 | 22 | $this->publishes([ |
23 | - __DIR__.'/../config/config.php' => config_path('scheduler.php'), |
|
23 | + __DIR__ . '/../config/config.php' => config_path('scheduler.php'), |
|
24 | 24 | ]); |
25 | 25 | |
26 | - $this->loadMigrationsFrom(__DIR__.'/Migrations'); |
|
27 | - $this->loadTranslationsFrom(__DIR__.'/Translations', 'scheduler'); |
|
26 | + $this->loadMigrationsFrom(__DIR__ . '/Migrations'); |
|
27 | + $this->loadTranslationsFrom(__DIR__ . '/Translations', 'scheduler'); |
|
28 | 28 | |
29 | 29 | $this->publishes([ |
30 | - __DIR__.'/Translations' => resource_path('lang/vendor/scheduler'), |
|
30 | + __DIR__ . '/Translations' => resource_path('lang/vendor/scheduler'), |
|
31 | 31 | ]); |
32 | 32 | } |
33 | 33 | |
@@ -36,9 +36,9 @@ discard block |
||
36 | 36 | * |
37 | 37 | * @return void |
38 | 38 | */ |
39 | - public function register() |
|
39 | + public function register () |
|
40 | 40 | { |
41 | - $this->app->singleton(Scheduler::class, function ($app) { |
|
41 | + $this->app->singleton(Scheduler::class, function($app) { |
|
42 | 42 | return new Scheduler($app); |
43 | 43 | }); |
44 | 44 | |
@@ -52,10 +52,10 @@ discard block |
||
52 | 52 | * |
53 | 53 | * @return void |
54 | 54 | */ |
55 | - private function mergeConfig() |
|
55 | + private function mergeConfig () |
|
56 | 56 | { |
57 | 57 | $this->mergeConfigFrom( |
58 | - __DIR__.'/../config/config.php', 'scheduler' |
|
58 | + __DIR__ . '/../config/config.php', 'scheduler' |
|
59 | 59 | ); |
60 | 60 | } |
61 | 61 | } |
62 | 62 | \ No newline at end of file |
@@ -37,7 +37,7 @@ |
||
37 | 37 | /** |
38 | 38 | * Construtor para inicilizar a váriavel table. |
39 | 39 | */ |
40 | - public function __construct(array $attributes = []) |
|
40 | + public function __construct (array $attributes = [ ]) |
|
41 | 41 | { |
42 | 42 | parent::__construct($attributes); |
43 | 43 |
@@ -24,7 +24,7 @@ |
||
24 | 24 | * |
25 | 25 | * @return string |
26 | 26 | */ |
27 | - protected static function getFacadeAccessor() |
|
27 | + protected static function getFacadeAccessor () |
|
28 | 28 | { |
29 | 29 | return 'scheduler'; |
30 | 30 | } |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * |
65 | 65 | * @param mixed $model |
66 | 66 | */ |
67 | - public function __construct($model = 'foo') |
|
67 | + public function __construct ($model = 'foo') |
|
68 | 68 | { |
69 | 69 | $this->model = $model; |
70 | 70 | } |
@@ -74,12 +74,12 @@ discard block |
||
74 | 74 | * |
75 | 75 | * @return \Illuminate\Http\JsonResponse |
76 | 76 | */ |
77 | - public function render() |
|
77 | + public function render () |
|
78 | 78 | { |
79 | 79 | return response()-> |
80 | 80 | /** @scrutinizer ignore-call */ |
81 | 81 | json([ |
82 | - 'messages' => trans('scheduler::exceptions.'. $this->trans, $this->parseValues()) |
|
82 | + 'messages' => trans('scheduler::exceptions.' . $this->trans, $this->parseValues()) |
|
83 | 83 | ], $this->statusCode); |
84 | 84 | } |
85 | 85 | |
@@ -88,9 +88,9 @@ discard block |
||
88 | 88 | * |
89 | 89 | * @return array |
90 | 90 | */ |
91 | - protected function parseValues() |
|
91 | + protected function parseValues () |
|
92 | 92 | { |
93 | - if(is_array($this->attributes) && is_array($this->values)) |
|
93 | + if (is_array($this->attributes) && is_array($this->values)) |
|
94 | 94 | return collect($this->attributes)->combine($this->values)->all(); |
95 | 95 | |
96 | 96 | return [ $this->attributes => $this->values ?? $this->isLower() ]; |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * |
102 | 102 | * @return string |
103 | 103 | */ |
104 | - protected function isLower() |
|
104 | + protected function isLower () |
|
105 | 105 | { |
106 | 106 | return $this->lowercase ? strtolower($this->getAlias()) : $this->getAlias(); |
107 | 107 | } |
@@ -111,12 +111,12 @@ discard block |
||
111 | 111 | * |
112 | 112 | * @return string |
113 | 113 | */ |
114 | - protected function getAlias() |
|
114 | + protected function getAlias () |
|
115 | 115 | { |
116 | - if(is_object($this->model)) |
|
116 | + if (is_object($this->model)) |
|
117 | 117 | $this->model = get_class($this->model); |
118 | 118 | |
119 | - return collect(trans('scheduler::exceptions.aliases.'. $this->aliastype))->search($this->model) ?: 'Recurso'; |
|
119 | + return collect(trans('scheduler::exceptions.aliases.' . $this->aliastype))->search($this->model) ?: 'Recurso'; |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | * |
125 | 125 | * @param mixed $values |
126 | 126 | */ |
127 | - public function setValues($values) |
|
127 | + public function setValues ($values) |
|
128 | 128 | { |
129 | 129 | $this->values = $values; |
130 | 130 |
@@ -19,21 +19,21 @@ discard block |
||
19 | 19 | * @param string $relation |
20 | 20 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
21 | 21 | */ |
22 | - abstract public function belongsTo($related, $foreignKey = null, $ownerKey = null, $relation = null); |
|
22 | + abstract public function belongsTo ($related, $foreignKey = null, $ownerKey = null, $relation = null); |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * Get the value of the model's primary key. |
26 | 26 | * |
27 | 27 | * @return mixed |
28 | 28 | */ |
29 | - abstract public function getKey(); |
|
29 | + abstract public function getKey (); |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * Retorna apenas os horários que possuem o mesmo [model_type] do [parent] dessa [trait]. |
33 | 33 | * |
34 | 34 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
35 | 35 | */ |
36 | - public function schedules(); |
|
36 | + public function schedules (); |
|
37 | 37 | |
38 | 38 | /** |
39 | 39 | * Agenda um horário para esta model. |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @throws \H4ad\Scheduler\Exceptions\CantAddWithSameStartAt |
49 | 49 | * @throws \H4ad\Scheduler\Exceptions\EndCantBeforeStart |
50 | 50 | */ |
51 | - public function addSchedule($start_at, $end_at = null, $status = null); |
|
51 | + public function addSchedule ($start_at, $end_at = null, $status = null); |
|
52 | 52 | |
53 | 53 | /** |
54 | 54 | * Exibe uma lista dos horários do dia de hoje. |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * Se for nulo, ele busca a referencia da config. |
60 | 60 | * @return array |
61 | 61 | */ |
62 | - public function availableToday($duration = 0, $openingTime = null); |
|
62 | + public function availableToday ($duration = 0, $openingTime = null); |
|
63 | 63 | |
64 | 64 | /** |
65 | 65 | * Lista os horários livres em um determinado dia. |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * Se for nulo, ele busca a referencia da config. |
72 | 72 | * @return array |
73 | 73 | */ |
74 | - public function availableOn($date, $duration = 0, $openingTime = null); |
|
74 | + public function availableOn ($date, $duration = 0, $openingTime = null); |
|
75 | 75 | |
76 | 76 | /** |
77 | 77 | * Faz um parse na data e retorna uma instância em Carbon. |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | * |
83 | 83 | * @throws \H4ad\Scheduler\Exceptions\IntInvalidArgument |
84 | 84 | */ |
85 | - public function parseToCarbon($date, $reference = null); |
|
85 | + public function parseToCarbon ($date, $reference = null); |
|
86 | 86 | |
87 | 87 | /** |
88 | 88 | * Faz um parse e retorna um Schedule. |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | * @param \Carbon\Carbon|string|int $value Valor que representará a data ou o id a ser buscado. |
91 | 91 | * @return \H4ad\Scheduler\Models\Schedule|null |
92 | 92 | */ |
93 | - public function parseToSchedule($value); |
|
93 | + public function parseToSchedule ($value); |
|
94 | 94 | |
95 | 95 | /** |
96 | 96 | * Remove um horário agendado pelo seu ID ou pelo horário em que foi marcado. |
@@ -104,5 +104,5 @@ discard block |
||
104 | 104 | * @throws \H4ad\Scheduler\Exceptions\CantRemoveByDate |
105 | 105 | * @throws \H4ad\Scheduler\Exceptions\ModelNotFound |
106 | 106 | */ |
107 | - public function removeSchedule($schedule); |
|
107 | + public function removeSchedule ($schedule); |
|
108 | 108 | } |
109 | 109 | \ No newline at end of file |
@@ -36,21 +36,21 @@ discard block |
||
36 | 36 | * @param string $relation |
37 | 37 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
38 | 38 | */ |
39 | - abstract public function belongsTo($related, $foreignKey = null, $ownerKey = null, $relation = null); |
|
39 | + abstract public function belongsTo ($related, $foreignKey = null, $ownerKey = null, $relation = null); |
|
40 | 40 | |
41 | 41 | /** |
42 | 42 | * Get the value of the model's primary key. |
43 | 43 | * |
44 | 44 | * @return mixed |
45 | 45 | */ |
46 | - abstract public function getKey(); |
|
46 | + abstract public function getKey (); |
|
47 | 47 | |
48 | 48 | /** |
49 | 49 | * Retorna apenas os horários que possuem o mesmo [model_type] do [parent] dessa [trait]. |
50 | 50 | * |
51 | 51 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
52 | 52 | */ |
53 | - public function schedules() |
|
53 | + public function schedules () |
|
54 | 54 | { |
55 | 55 | return $this->belongsTo(Config::get('scheduler.schedules_table'), 'model_id'); |
56 | 56 | } |
@@ -68,21 +68,21 @@ discard block |
||
68 | 68 | * @throws \H4ad\Scheduler\Exceptions\EndCantBeforeStart |
69 | 69 | * @throws \H4ad\Scheduler\Exceptions\CantAddWithSameStartAt |
70 | 70 | */ |
71 | - public function addSchedule($start_at, $end_at = null, $status = null) |
|
71 | + public function addSchedule ($start_at, $end_at = null, $status = null) |
|
72 | 72 | { |
73 | - if(!Config::get('scheduler.enable_schedule_without_end') && is_null($end_at)) |
|
73 | + if (!Config::get('scheduler.enable_schedule_without_end') && is_null($end_at)) |
|
74 | 74 | throw new CantAddWithoutEnd; |
75 | 75 | |
76 | - $start_at = $this->parseToCarbon($start_at); |
|
76 | + $start_at = $this->parseToCarbon($start_at); |
|
77 | 77 | |
78 | - if(!is_null($end_at)) { |
|
78 | + if (!is_null($end_at)) { |
|
79 | 79 | $end_at = $this->parseToCarbon($end_at, $start_at); |
80 | 80 | |
81 | - if($start_at->greaterThan($end_at)) |
|
81 | + if ($start_at->greaterThan($end_at)) |
|
82 | 82 | throw new EndCantBeforeStart; |
83 | 83 | } |
84 | 84 | |
85 | - if(Scheduler::hasScheduleBetween(self::class, $start_at, $end_at ?? $start_at)) |
|
85 | + if (Scheduler::hasScheduleBetween(self::class, $start_at, $end_at ?? $start_at)) |
|
86 | 86 | throw new CantAddWithSameStartAt; |
87 | 87 | |
88 | 88 | $model_id = $this->getKey(); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | * Se for nulo, ele busca a referencia da config. |
101 | 101 | * @return array |
102 | 102 | */ |
103 | - public function availableToday($duration = 0, $openingTime = null) |
|
103 | + public function availableToday ($duration = 0, $openingTime = null) |
|
104 | 104 | { |
105 | 105 | return Scheduler::availableToday(self::class, $duration, $openingTime); |
106 | 106 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | * Se for nulo, ele busca a referencia da config. |
116 | 116 | * @return array |
117 | 117 | */ |
118 | - public function availableOn($date, $duration = 0, $openingTime = null) |
|
118 | + public function availableOn ($date, $duration = 0, $openingTime = null) |
|
119 | 119 | { |
120 | 120 | return Scheduler::availableOn(self::class, $date, $duration, $openingTime); |
121 | 121 | } |
@@ -129,15 +129,15 @@ discard block |
||
129 | 129 | * |
130 | 130 | * @throws \H4ad\Scheduler\Exceptions\IntInvalidArgument |
131 | 131 | */ |
132 | - public function parseToCarbon($date, $reference = null) |
|
132 | + public function parseToCarbon ($date, $reference = null) |
|
133 | 133 | { |
134 | - if($date instanceof Carbon) |
|
134 | + if ($date instanceof Carbon) |
|
135 | 135 | return $date; |
136 | 136 | |
137 | - if(is_string($date)) |
|
137 | + if (is_string($date)) |
|
138 | 138 | return Carbon::parse($date); |
139 | 139 | |
140 | - if(is_int($date) && !is_null($reference)) |
|
140 | + if (is_int($date) && !is_null($reference)) |
|
141 | 141 | return Carbon::parse($reference->toDateTimeString())->addMinutes($date); |
142 | 142 | |
143 | 143 | throw new IntInvalidArgument; |
@@ -149,9 +149,9 @@ discard block |
||
149 | 149 | * @param \Carbon\Carbon|string|int $value Valor que representará a data ou o id a ser buscado. |
150 | 150 | * @return \H4ad\Scheduler\Models\Schedule|null |
151 | 151 | */ |
152 | - public function parseToSchedule($value) |
|
152 | + public function parseToSchedule ($value) |
|
153 | 153 | { |
154 | - if(is_int($value)) |
|
154 | + if (is_int($value)) |
|
155 | 155 | return Schedule::find($value); |
156 | 156 | |
157 | 157 | return Schedule::byStartAt($value)->first(); |
@@ -169,17 +169,17 @@ discard block |
||
169 | 169 | * @throws \H4ad\Scheduler\Exceptions\CantRemoveByDate |
170 | 170 | * @throws \H4ad\Scheduler\Exceptions\ModelNotFound |
171 | 171 | */ |
172 | - public function removeSchedule($schedule) |
|
172 | + public function removeSchedule ($schedule) |
|
173 | 173 | { |
174 | - if(!Config::get('scheduler.enable_schedule_conflict') && !is_int($schedule)) |
|
174 | + if (!Config::get('scheduler.enable_schedule_conflict') && !is_int($schedule)) |
|
175 | 175 | throw new CantRemoveByDate; |
176 | 176 | |
177 | 177 | $schedule = $this->parseToSchedule($schedule); |
178 | 178 | |
179 | - if(!($schedule instanceof Model)) |
|
179 | + if (!($schedule instanceof Model)) |
|
180 | 180 | throw (new ModelNotFound)->setValues(Schedule::class); |
181 | 181 | |
182 | - if($schedule->model_type != self::class || $schedule->model_id != $this->getKey()) |
|
182 | + if ($schedule->model_type != self::class || $schedule->model_id != $this->getKey()) |
|
183 | 183 | throw new DoesNotBelong; |
184 | 184 | |
185 | 185 | return $schedule->delete(); |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | * |
45 | 45 | * @param int|string $status Pode ser passado o ID do status ou seu nome para seta-lo no horário. |
46 | 46 | */ |
47 | - public function setStatus($name) |
|
47 | + public function setStatus ($name) |
|
48 | 48 | { |
49 | 49 | $this->fill($this->parseStatusKey($name))->save(); |
50 | 50 | } |
@@ -57,18 +57,18 @@ discard block |
||
57 | 57 | * |
58 | 58 | * @throws \H4ad\Scheduler\Exceptions\ModelNotFound |
59 | 59 | */ |
60 | - public function parseStatusKey($status) |
|
60 | + public function parseStatusKey ($status) |
|
61 | 61 | { |
62 | - if(is_int($status)) |
|
63 | - $status = ScheduleStatus::find($status); |
|
62 | + if (is_int($status)) |
|
63 | + $status = ScheduleStatus::find($status); |
|
64 | 64 | |
65 | - if(is_string($status)) |
|
65 | + if (is_string($status)) |
|
66 | 66 | $status = ScheduleStatus::where('name', $status)->first(); |
67 | 67 | |
68 | - if(is_null($status)) |
|
68 | + if (is_null($status)) |
|
69 | 69 | throw (new ModelNotFound)->setValues(ScheduleStatus::class); |
70 | 70 | |
71 | - return ['status' => $status->id]; |
|
71 | + return [ 'status' => $status->id ]; |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | /** |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * @param \Carbon\Carbon|string $start_at |
79 | 79 | * @return \Illuminate\Database\Eloquent\Builder |
80 | 80 | */ |
81 | - public function scopeByStartAt($query, $start_at) |
|
81 | + public function scopeByStartAt ($query, $start_at) |
|
82 | 82 | { |
83 | 83 | return $query->where('start_at', $start_at); |
84 | 84 | } |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | * |
29 | 29 | * @return void |
30 | 30 | */ |
31 | - public function __construct($app) |
|
31 | + public function __construct ($app) |
|
32 | 32 | { |
33 | 33 | $this->app = $app; |
34 | 34 | } |
@@ -41,9 +41,9 @@ discard block |
||
41 | 41 | * @param string|\Carbon\Carbon $end_at |
42 | 42 | * @return bool |
43 | 43 | */ |
44 | - public function hasScheduleBetween($model_type, $start_at, $end_at) |
|
44 | + public function hasScheduleBetween ($model_type, $start_at, $end_at) |
|
45 | 45 | { |
46 | - if(!Config::get('scheduler.enable_schedule_conflict')) |
|
46 | + if (!Config::get('scheduler.enable_schedule_conflict')) |
|
47 | 47 | return false; |
48 | 48 | |
49 | 49 | return !is_null( |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | * Se for nulo, ele busca a referencia da config. |
66 | 66 | * @return array |
67 | 67 | */ |
68 | - public function availableToday($model_type, $duration, $openingTime = null) |
|
68 | + public function availableToday ($model_type, $duration, $openingTime = null) |
|
69 | 69 | { |
70 | 70 | return $this->availableOn($model_type, Carbon::now(), $duration, $openingTime); |
71 | 71 | } |
@@ -81,14 +81,14 @@ discard block |
||
81 | 81 | * Se for nulo, ele busca a referencia da config. |
82 | 82 | * @return array |
83 | 83 | */ |
84 | - public function availableOn($model_type, $today, $durationMinutes, $openingTime = null) |
|
84 | + public function availableOn ($model_type, $today, $durationMinutes, $openingTime = null) |
|
85 | 85 | { |
86 | 86 | $openingTime = $openingTime ?? Carbon::parse(Config::get('scheduler.opening_time'))->setDateFrom($today); |
87 | 87 | $closingTime = Carbon::parse(Config::get('scheduler.closing_time'))->setDateFrom($today); |
88 | 88 | |
89 | - $livres = []; |
|
89 | + $livres = [ ]; |
|
90 | 90 | $today = Carbon::parse($today->toDateString()); |
91 | - while($openingTime <= $closingTime) |
|
91 | + while ($openingTime <= $closingTime) |
|
92 | 92 | { |
93 | 93 | $add = true; |
94 | 94 | |
@@ -99,20 +99,20 @@ discard block |
||
99 | 99 | $start = Carbon::parse($schedule->start_at); |
100 | 100 | $begin = Carbon::parse($start->toDateString()); |
101 | 101 | |
102 | - if($begin->greaterThan($today)) |
|
102 | + if ($begin->greaterThan($today)) |
|
103 | 103 | break; |
104 | 104 | |
105 | - if($begin->notEqualTo($today)) |
|
105 | + if ($begin->notEqualTo($today)) |
|
106 | 106 | continue; |
107 | 107 | |
108 | 108 | $end = Carbon::parse($schedule->end_at); |
109 | 109 | |
110 | - if($this->isShouldntAdd($opening, $closing, $start, $end)) |
|
110 | + if ($this->isShouldntAdd($opening, $closing, $start, $end)) |
|
111 | 111 | $add = false; |
112 | 112 | } |
113 | 113 | |
114 | - if($add && $closing->lessThanOrEqualTo($closingTime)) |
|
115 | - $livres[] = [ |
|
114 | + if ($add && $closing->lessThanOrEqualTo($closingTime)) |
|
115 | + $livres[ ] = [ |
|
116 | 116 | 'start_at' => $opening, |
117 | 117 | 'end_at' => $closing |
118 | 118 | ]; |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | * @param \Carbon\Carbon $end |
133 | 133 | * @return boolean |
134 | 134 | */ |
135 | - private function isShouldntAdd($opening, $closing, $start, $end) |
|
135 | + private function isShouldntAdd ($opening, $closing, $start, $end) |
|
136 | 136 | { |
137 | 137 | return $start <= $opening && $end >= $closing; |
138 | 138 | } |
@@ -20,9 +20,9 @@ discard block |
||
20 | 20 | * |
21 | 21 | * @return void |
22 | 22 | */ |
23 | - public function up() |
|
23 | + public function up () |
|
24 | 24 | { |
25 | - Schema::create(Config::get('scheduler.schedules_table'), function (Blueprint $table) { |
|
25 | + Schema::create(Config::get('scheduler.schedules_table'), function(Blueprint $table) { |
|
26 | 26 | $table->increments('id'); |
27 | 27 | $table->string('model_type'); |
28 | 28 | $table->integer('model_id'); |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * |
40 | 40 | * @return void |
41 | 41 | */ |
42 | - public function down() |
|
42 | + public function down () |
|
43 | 43 | { |
44 | 44 | Schema::drop(Config::get('scheduler.schedules_table')); |
45 | 45 | } |