mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
FQCN bugfix when writing external eloquent builder methods inside models. (#1113)
* Fix code that was causing the test to break and fix bug with not built in types * Run cs fixer * Remove fetching the doc block type and the putting it as a type hint as a php doc block is sufficient * Revert doc block type hinting * Enchance doc block type hinting * Combine replacements * Use the full builder class instead of the parsed one after the getClassName function and remove in array check * Get the builder from the model itself instead of passing a string directly the function * Use the full builder class to get the builder methods and reflection, but use the parsed builder class after setting its method in the doc * Add test for fqn support on external eloquent builder * Use the external builder if necessary when building the magic wheres * Use the default eloquent builder if the user has disabled the external builder option
This commit is contained in:
+109
@@ -0,0 +1,109 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithExternalEloquentBuilderWithFqn\Builders;
|
||||
|
||||
use Barryvdh\LaravelIdeHelper\Console\ModelsCommand;
|
||||
use Illuminate\Database\Eloquent\Builder;
|
||||
|
||||
class PostExternalQueryBuilder extends Builder
|
||||
{
|
||||
public function isActive(): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isStatus(string $status): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isLoadingWith(?string $with): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int|null $number
|
||||
* @return $this
|
||||
*/
|
||||
public function withTheNumber($number): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param integer|null $number
|
||||
* @return $this
|
||||
*/
|
||||
public function withTheNumberDifferently($number): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param bool|null $number
|
||||
* @return $this
|
||||
*/
|
||||
public function withBool($booleanVar): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param bool|null $number
|
||||
* @return $this
|
||||
*/
|
||||
public function withBoolDifferently($booleanVar): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function withBoolTypeHinted(bool $booleanVar): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int|string $someone
|
||||
* @return $this
|
||||
*/
|
||||
public function withSomeone($someone): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $option
|
||||
* @return $this
|
||||
*/
|
||||
public function withMixedOption($option): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function withTestCommand(ModelsCommand $testCommand): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function withNullTestCommand(?ModelsCommand $testCommand): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function withNullAndAssignmentTestCommand(?ModelsCommand $testCommand = null): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param ModelsCommand $testCommand
|
||||
* @return $this
|
||||
*/
|
||||
public function withNullTestCommandInDocBlock($testCommand): self
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user