X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fdevel%2Fwebprofiler%2Fsrc%2FCommand%2FBenchmarkData.php;fp=web%2Fmodules%2Fcontrib%2Fdevel%2Fwebprofiler%2Fsrc%2FCommand%2FBenchmarkData.php;h=e587c90ed432c792f028b2323c3311c8fae7dfa7;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hp=0000000000000000000000000000000000000000;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad;p=yaffs-website diff --git a/web/modules/contrib/devel/webprofiler/src/Command/BenchmarkData.php b/web/modules/contrib/devel/webprofiler/src/Command/BenchmarkData.php new file mode 100644 index 000000000..e587c90ed --- /dev/null +++ b/web/modules/contrib/devel/webprofiler/src/Command/BenchmarkData.php @@ -0,0 +1,57 @@ +token = $token; + $this->memory = $memory; + $this->time = $time; + } + + /** + * @return mixed + */ + public function getToken() { + return $this->token; + } + + /** + * @return mixed + */ + public function getMemory() { + return $this->memory; + } + + /** + * @return mixed + */ + public function getTime() { + return $this->time; + } + +}