Editing: ShareFacade.php
<?php namespace Jorenvh\Share; use Illuminate\Support\Facades\Facade; /** * @method page($url, ?string $title = null, array $options = [], ?string $prefix = null, ?string $suffix = null) * @method currentPage($url, ?string $title = null, array $options = [], ?string $prefix = null, ?string $suffix = null) * @method facebook() * @method twitter() * @method reddit() * @method telegram() * @method whatsapp() * @method linkedin(string $summary = '') * @method pinterest() * @method array getRawLinks() */ class ShareFacade extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return Share::class; } }
Save
Back