Fix Laravel Pint formatting
This commit is contained in:
@@ -6,7 +6,7 @@ use App\Models\ClassSection;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
/**
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\ClassSection>
|
||||
* @extends Factory<ClassSection>
|
||||
*/
|
||||
class ClassSectionFactory extends Factory
|
||||
{
|
||||
@@ -19,7 +19,7 @@ class ClassSectionFactory extends Factory
|
||||
return [
|
||||
'class_id' => fake()->numberBetween(1, 20),
|
||||
'class_section_id' => $sectionId,
|
||||
'class_section_name' => (string) $sectionId . fake()->randomElement(['A', 'B', 'C']),
|
||||
'class_section_name' => (string) $sectionId.fake()->randomElement(['A', 'B', 'C']),
|
||||
'semester' => 'Fall',
|
||||
'school_year' => '2025-2026',
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user