<?php is_link(string $filename): bool
<?php continue; } if (is_link($link)) { $this->laravel->make('files')->delete($link); }
<?php protected function isRemovableSymlink(string $link, bool $force): bool { return is_link($link) && $force; } }
<?php public function handle() { foreach ($this->links() as $link => $target) { if (! file_exists($link) || ! is_link($link)) { continue; }