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: illuminate/contracts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v12.2.0
Choose a base ref
...
head repository: illuminate/contracts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v12.3.0
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 16, 2025

  1. Copy the full SHA
    88962e0 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 Filesystem/Filesystem.php
8 changes: 4 additions & 4 deletions Filesystem/Filesystem.php
Original file line number Diff line number Diff line change
@@ -173,15 +173,15 @@ public function lastModified($path);
*
* @param string|null $directory
* @param bool $recursive
* @return array
* @return array<string>
*/
public function files($directory = null, $recursive = false);

/**
* Get all of the files from the given directory (recursive).
*
* @param string|null $directory
* @return array
* @return array<string>
*/
public function allFiles($directory = null);

@@ -190,15 +190,15 @@ public function allFiles($directory = null);
*
* @param string|null $directory
* @param bool $recursive
* @return array
* @return array<string>
*/
public function directories($directory = null, $recursive = false);

/**
* Get all (recursive) of the directories within a given directory.
*
* @param string|null $directory
* @return array
* @return array<string>
*/
public function allDirectories($directory = null);