CORE-POS/IS4C

View on GitHub
pos/is4c-nf/lib/ItemAction.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace COREPOS\pos\lib;

/**
  @class ItemAction
  
  An item action is invoked each time an item is added 
  to a transaction
*/
class ItemAction
{
    /**
      Callback invoked after each record is added
      to the transaction

      @param $record [keyed array] last record 
        added to the transaction
    */
    // @hintable
    public function callback($record)
    {
    }
}