Skip to content
This repository was archived by the owner on Jun 11, 2020. It is now read-only.
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: php-toolkit/arr-utils
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.4
Choose a base ref
...
head repository: php-toolkit/arr-utils
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Jun 24, 2019

  1. inspact and reformat codes ...

    inhere committed Jun 24, 2019
    Copy the full SHA
    6d4de76 View commit details
Showing with 315 additions and 183 deletions.
  1. +1 −0 src/Arr.php
  2. +2 −0 src/ArrBuffer.php
  3. +273 −164 src/ArrayHelper.php
  4. +39 −19 src/FixedArray.php
1 change: 1 addition & 0 deletions src/Arr.php
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@
/**
* Class Arr
* alias of the StringHelper
*
* @package Toolkit\ArrUtil
*/
class Arr extends ArrayHelper
2 changes: 2 additions & 0 deletions src/ArrBuffer.php
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@

/**
* Class ArrBuffer
*
* @package Toolkit\ArrUtil
*/
final class ArrBuffer
@@ -22,6 +23,7 @@ final class ArrBuffer

/**
* constructor.
*
* @param string $content
*/
public function __construct(string $content = '')
Loading