Blame view

components/LoggerInterface.php 303 Bytes
17569d93   Alexey Boroda   -Order product lo...
1
2
3
4
5
6
7
8
9
  <?php
      namespace artweb\artbox\ecommerce\components;
      
      interface LoggerInterface
      {
          public static function generateData(array $changedAttributes, array $oldAttributes, bool $insert);
          
          public static function saveData(array $data, int $identityId, $params = []);
      }