Resolve recommended-profile Critical and High findings, retain narrow analyzer exceptions, and update the edge-broker WebSocket dependency to a non-vulnerable release.
20 lines
263 B
PHP
20 lines
263 B
PHP
<?php
|
|
|
|
namespace classes;
|
|
|
|
use interfaces\encrypt_i;
|
|
|
|
class encrypt implements encrypt_i
|
|
{
|
|
|
|
public function encrypt(string $data): string
|
|
{
|
|
return $data;
|
|
}
|
|
|
|
public function decrypt(string $data): string
|
|
{
|
|
return $data;
|
|
}
|
|
}
|