Skip to content

Commit

Permalink
Add Driver Interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Mulder committed Nov 8, 2024
1 parent a3ae3a3 commit 5345a7f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Api/DriverInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

namespace JustBetter\XhprofProfiler\Api;

interface DriverInterface
{
/**
* @return void
*/
public function start();

/**
* End profiling sessions and output data
* @return void
*/
public function end(array $tags);
}

0 comments on commit 5345a7f

Please sign in to comment.