Skip to content

Commit

Permalink
Merge branch 'upgrade_php_laravel_base_lib'
Browse files Browse the repository at this point in the history
  • Loading branch information
uphlewis committed Jun 24, 2024
2 parents a4c1451 + 5b187c3 commit 47a68fd
Show file tree
Hide file tree
Showing 8 changed files with 7,446 additions and 4,509 deletions.
11,627 changes: 7,365 additions & 4,262 deletions _ide_helper.php

Large diffs are not rendered by default.

81 changes: 81 additions & 0 deletions _ide_helper_models.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
<?php

// @formatter:off
// phpcs:ignoreFile
/**
* A helper file for your Eloquent Models
* Copy the phpDocs from this file to the correct Model,
* And remove them from this file, to prevent double declarations.
*
* @author Barry vd. Heuvel <[email protected]>
*/


namespace App\Models{
/**
* App\Models\ProviderConfiguration
*
* @property int $id
* @property string $category_code
* @property string $provider_code
* @property string $name
* @property array $data
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static Builder|ProviderConfiguration newModelQuery()
* @method static Builder|ProviderConfiguration newQuery()
* @method static Builder|ProviderConfiguration query()
* @method static Builder|ProviderConfiguration whereCategory($category)
* @method static Builder|ProviderConfiguration whereCategoryCode($value)
* @method static Builder|ProviderConfiguration whereCreatedAt($value)
* @method static Builder|ProviderConfiguration whereData($value)
* @method static Builder|ProviderConfiguration whereId($value)
* @method static Builder|ProviderConfiguration whereName($value)
* @method static Builder|ProviderConfiguration whereProvider($provider)
* @method static Builder|ProviderConfiguration whereProviderCode($value)
* @method static Builder|ProviderConfiguration whereUpdatedAt($value)
* @mixin \Eloquent
*/
class ProviderConfiguration extends \Eloquent {}
}

namespace App\Models{
/**
* App\Models\ProvisionRequest
*
* @property int $id
* @property string $category_code
* @property string $provider_code
* @property int $configuration_id
* @property string $function_name
* @property array $parameter_data
* @property string|null $result_status
* @property string|null $result_message
* @property array|null $result_data
* @property float|null $execution_time
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\ProviderConfiguration $configuration
* @property-read array $flat_parameter_data
* @method static Builder|ProvisionRequest newModelQuery()
* @method static Builder|ProvisionRequest newQuery()
* @method static Builder|ProvisionRequest query()
* @method static Builder|ProvisionRequest whereCategory($category)
* @method static Builder|ProvisionRequest whereCategoryCode($value)
* @method static Builder|ProvisionRequest whereConfigurationId($value)
* @method static Builder|ProvisionRequest whereCreatedAt($value)
* @method static Builder|ProvisionRequest whereExecutionTime($value)
* @method static Builder|ProvisionRequest whereFunctionName($value)
* @method static Builder|ProvisionRequest whereId($value)
* @method static Builder|ProvisionRequest whereParameterData($value)
* @method static Builder|ProvisionRequest whereProvider($provider)
* @method static Builder|ProvisionRequest whereProviderCode($value)
* @method static Builder|ProvisionRequest whereResultData($value)
* @method static Builder|ProvisionRequest whereResultMessage($value)
* @method static Builder|ProvisionRequest whereResultStatus($value)
* @method static Builder|ProvisionRequest whereUpdatedAt($value)
* @mixin \Eloquent
*/
class ProvisionRequest extends \Eloquent {}
}

40 changes: 0 additions & 40 deletions app/Http/Controllers/Auth/ConfirmPasswordController.php

This file was deleted.

22 changes: 0 additions & 22 deletions app/Http/Controllers/Auth/ForgotPasswordController.php

This file was deleted.

40 changes: 0 additions & 40 deletions app/Http/Controllers/Auth/LoginController.php

This file was deleted.

73 changes: 0 additions & 73 deletions app/Http/Controllers/Auth/RegisterController.php

This file was deleted.

30 changes: 0 additions & 30 deletions app/Http/Controllers/Auth/ResetPasswordController.php

This file was deleted.

42 changes: 0 additions & 42 deletions app/Http/Controllers/Auth/VerificationController.php

This file was deleted.

0 comments on commit 47a68fd

Please sign in to comment.