for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Vsmoraes\DynamoMapper\Mappings;
class IntMapping implements Mapping
{
/**
* {@inheritdoc}
*/
public function toAttribute(array $data)
return (int) $data['N'];
}
public function toArray($value): array
return ['N' => $value];