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: felixdorn/tin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.0
Choose a base ref
...
head repository: felixdorn/tin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 14, 2024

  1. docs

    Félix Dorn committed Mar 14, 2024
    Copy the full SHA
    c34a626 View commit details

Commits on Mar 15, 2024

  1. Create .envrc

    felixdorn authored Mar 15, 2024
    Copy the full SHA
    b808b5d View commit details
Showing with 3 additions and 1 deletion.
  1. +1 −0 .envrc
  2. +2 −1 src/Contracts/OutputInterface.php
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use flake
3 changes: 2 additions & 1 deletion src/Contracts/OutputInterface.php
Original file line number Diff line number Diff line change
@@ -7,9 +7,10 @@

interface OutputInterface
{
/** Transform the token value to the desired output format with respect to the token type and theme */
/** Transforms the token value to the desired output format with respect to the token type and theme */
public function transform(TokenType $type, string $value): string;

/** Transforms a line by calling the transform() method on $line->output */
public function transformLine(Line $line): ?string;

/** Returns the theme used by the output */