Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: UniSharp/laravel-filemanager
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: rdvr/laravel-filemanager
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Mar 11, 2025

  1. Update Lfm.php

    bug fix with laravel 12 upgrade
    rdvr authored Mar 11, 2025
    Copy the full SHA
    aa9b17a View commit details
  2. Update LfmPath.php

    bug fix
    rdvr authored Mar 11, 2025
    Copy the full SHA
    054b201 View commit details
  3. Update LfmPath.php

    bug fix
    rdvr authored Mar 11, 2025
    Copy the full SHA
    4986fed View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 src/Lfm.php
  2. +1 −1 src/LfmPath.php
2 changes: 1 addition & 1 deletion src/Lfm.php
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ class Lfm
protected $config;
protected $request;

public function __construct(Config $config = null, Request $request = null)
public function __construct(?Config $config = null, ?Request $request = null)
{
$this->config = $config;
$this->request = $request;
2 changes: 1 addition & 1 deletion src/LfmPath.php
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ class LfmPath

private $helper;

public function __construct(Lfm $lfm = null)
public function __construct(Lfm $lfm)
{
$this->helper = $lfm;
}