uawdijnntqw1x1x1
IP : 216.73.217.31
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pteabiscqq
/
www
/
libraries
/
quix
/
src
/
Assets
/
.
/
Concerns
/
.
/
Filesystem.php
/
/
<?php namespace ThemeXpert\Assets\Concerns; trait Filesystem { /** * Get contents from the given path. * * @param string $path * * @return string */ protected function getContents($path) { return @file_get_contents($path); } /** * Put the given contents in the given file path. * * @param string $path * @param string $contents */ protected function putContents($path, $contents) { @file_put_contents($path, $contents); } /** * Determine file existence. * * @param string $path * * @return bool */ protected function fileExists($path) { return file_exists($path); } }
/home/pteabiscqq/www/libraries/quix/src/Assets/./Concerns/./Filesystem.php