This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @param array $data | |
* @throws ProductImportException | |
*/ | |
public function createProduct(array $data) | |
{ | |
$originalProduct = $this->productRepository->findOneByCode($data['code']); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn to_celcius(value: f64) -> f64 { | |
(value - 32.0) * (5.0 / 9.0) | |
} | |
fn to_fahrenheit(value: f64) -> f64 { | |
(value * (9.0 / 5.0)) + 32.0 | |
} | |
fn main() { |